Initial commit

This commit is contained in:
2025-02-21 12:47:37 +08:00
commit 07d053abe7
17 changed files with 4034 additions and 0 deletions

9
src/App.tsx Normal file
View File

@@ -0,0 +1,9 @@
export const App = () => {
return (
<div className='bg-slate-200 w-full h-full border'>
<div className='test-loading bg-black'>
<div></div>
</div>
</div>
);
};

7
src/index.css Normal file
View File

@@ -0,0 +1,7 @@
@import "tailwindcss";
@layer components {
.test-loading {
@apply w-20 h-20 bg-gray-300 rounded-full animate-spin;
}
}

6
src/main.tsx Normal file
View File

@@ -0,0 +1,6 @@
import { createRoot } from 'react-dom/client';
import { App } from './App.tsx';
import './index.css';
createRoot(document.getElementById('root')!).render(<App />);

1
src/modules/basename.ts Normal file
View File

@@ -0,0 +1 @@
export const basename = DEV_SERVER ? '/' : BASE_NAME;

6
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="vite/client" />
type SimpleObject = {
[key: string | number]: any;
};
declare let BASE_NAME: string;