feat(common): implement buttons and confirmation modal

This commit is contained in:
2025-12-19 19:15:24 +01:00
parent 0c40597b04
commit 303b8e8790
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));