🧑‍💻 create button delay helper

This commit is contained in:
2025-07-13 16:21:05 +07:00
parent 0f4bfdfe1c
commit cfd8015cd5
5 changed files with 38 additions and 5 deletions

7
app/(clear)/layout.tsx Normal file
View File

@ -0,0 +1,7 @@
import React from "react";
const clearLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
return <div>{children}</div>;
};
export default clearLayout;

View File

@ -0,0 +1,7 @@
import React from "react";
const page = () => {
return <div>page</div>;
};
export default page;

View File

@ -0,0 +1,7 @@
import React from "react";
const page = () => {
return <div>Sign Up</div>;
};
export default page;