Initial commit

This commit is contained in:
kevisual
2026-02-21 00:23:24 +08:00
commit 83a34b07cf
50 changed files with 3522 additions and 0 deletions

8
src/pages/auth/index.tsx Normal file
View File

@@ -0,0 +1,8 @@
type Props = {
children: React.ReactNode
}
export const AuthProvider = ({ children }: Props) => {
return <>
{children}
</>
}