🧑💻 create button delay helper
This commit is contained in:
7
app/(clear)/layout.tsx
Normal file
7
app/(clear)/layout.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import React from "react";
|
||||
|
||||
const clearLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
|
||||
return <div>{children}</div>;
|
||||
};
|
||||
|
||||
export default clearLayout;
|
||||
7
app/(clear)/login/page.tsx
Normal file
7
app/(clear)/login/page.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import React from "react";
|
||||
|
||||
const page = () => {
|
||||
return <div>page</div>;
|
||||
};
|
||||
|
||||
export default page;
|
||||
7
app/(clear)/signup/page.tsx
Normal file
7
app/(clear)/signup/page.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import React from "react";
|
||||
|
||||
const page = () => {
|
||||
return <div>Sign Up</div>;
|
||||
};
|
||||
|
||||
export default page;
|
||||
Reference in New Issue
Block a user