Initial commit

This commit is contained in:
kevisual
2025-03-27 19:47:29 +08:00
commit 285ce31bfd
23 changed files with 2147 additions and 0 deletions

5
src/pages/App.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { basename } from '../modules/basename';
console.log('basename', basename);
export const App = () => {
return <div className='bg-slate-200 w-full h-full border'></div>;
};