first commit

This commit is contained in:
2025-12-30 14:42:30 +07:00
commit 171e2fe58b
254 changed files with 40353 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export const waitingFor = (timeout) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, timeout);
});
};