You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 276B

12345678910111213
  1. import React from 'react'
  2. import ReactDOM from 'react-dom'
  3. import App from './app'
  4. import { HashRouter } from 'react-router-dom'
  5. ReactDOM.render(
  6. <React.StrictMode>
  7. <HashRouter>
  8. <App />
  9. </HashRouter>
  10. </React.StrictMode>,
  11. document.getElementById('root')
  12. )