feat(common): implement buttons and confirmation modal

This commit is contained in:
2025-12-19 19:15:24 +01:00
parent e22374abb2
commit 5bc57f5edc
9 changed files with 229 additions and 0 deletions

2
app/utils/async.ts Normal file
View File

@@ -0,0 +1,2 @@
export const sleep = (ms: number) =>
new Promise<void>((resolve) => setTimeout(resolve, ms));