Co-authored-by: DigHuang <114602213+DigHuang@users.noreply.github.com> Co-authored-by: Felix <24791380+vcfgv@users.noreply.github.com> Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
/**
|
|
* React Application Entry Point
|
|
*/
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import { HashRouter } from 'react-router-dom';
|
|
import App from './App';
|
|
import './styles/globals.css';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<HashRouter>
|
|
<App />
|
|
</HashRouter>
|
|
</React.StrictMode>,
|
|
);
|