Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zvoosh committed Mar 7, 2024
1 parent a26aa35 commit a1452c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from 'react'
import ReactDOM from 'react-dom'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
import { HashRouter } from 'react-router-dom'

ReactDOM.render(
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<HashRouter basename='/Chinese-Cultural-Evolution/' >
{/* basename='/Chinese-Cultural-Evolution/' */}
<HashRouter>
<App />
</HashRouter >
</React.StrictMode>,
document.getElementById('root')
)

0 comments on commit a1452c1

Please sign in to comment.