diff options
| author | 2025-01-26 04:16:45 +0000 | |
|---|---|---|
| committer | 2025-01-26 04:16:45 +0000 | |
| commit | 2a65ec749b0b1974b757ecf175b3d638d1025aef (patch) | |
| tree | 1809c5cf959cbe35780ef5ad1be4219d6fdcc51d /src/main.tsx | |
| parent | f682d264df77d58620991e53eefabbef436d2179 (diff) | |
| download | HydroRollSite-2a65ec749b0b1974b757ecf175b3d638d1025aef.tar.gz HydroRollSite-2a65ec749b0b1974b757ecf175b3d638d1025aef.zip | |
cli
Diffstat (limited to 'src/main.tsx')
| -rw-r--r-- | src/main.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..bef5202 --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.tsx' + +createRoot(document.getElementById('root')!).render( + <StrictMode> + <App /> + </StrictMode>, +) |
