first commit
This commit is contained in:
1048
WebSite/src/App.tsx
Normal file
1048
WebSite/src/App.tsx
Normal file
File diff suppressed because it is too large
Load Diff
1
WebSite/src/index.css
Normal file
1
WebSite/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import "tailwindcss";
|
||||
10
WebSite/src/main.tsx
Normal file
10
WebSite/src/main.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import {StrictMode} from 'react';
|
||||
import {createRoot} from 'react-dom/client';
|
||||
import App from './App.tsx';
|
||||
import './index.css';
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>,
|
||||
);
|
||||
Reference in New Issue
Block a user