Fix lint errors for src/App.tsx

This commit is contained in:
zeon-neon[bot] 2024-06-18 00:49:01 +00:00 committed by GitHub
parent b21c758d40
commit 8e46cdef3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,14 +10,14 @@ import AboutPage from './components/AboutPage'
function App () {
return (
<HashRouter>
<Route path={"#/"} index component={<div style={{ zIndex: 9999 }}>
<Main />
<InfogramBelowMain />
<br />
</div>}/>
<Route path='#/about' component={<AboutPage />}/>
</HashRouter>
<HashRouter>
<Route path={'#/'} index component={<div style={{ zIndex: 9999 }}>
<Main />
<InfogramBelowMain />
<br />
</div>} />
<Route path='#/about' component={<AboutPage />} />
</HashRouter>
)
}