mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-22 04:43:38 +00:00
Fix lint errors for src/App.tsx
This commit is contained in:
parent
b21c758d40
commit
8e46cdef3d
1 changed files with 8 additions and 8 deletions
16
src/App.tsx
16
src/App.tsx
|
@ -10,14 +10,14 @@ import AboutPage from './components/AboutPage'
|
||||||
|
|
||||||
function App () {
|
function App () {
|
||||||
return (
|
return (
|
||||||
<HashRouter>
|
<HashRouter>
|
||||||
<Route path={"#/"} index component={<div style={{ zIndex: 9999 }}>
|
<Route path={'#/'} index component={<div style={{ zIndex: 9999 }}>
|
||||||
<Main />
|
<Main />
|
||||||
<InfogramBelowMain />
|
<InfogramBelowMain />
|
||||||
<br />
|
<br />
|
||||||
</div>}/>
|
</div>} />
|
||||||
<Route path='#/about' component={<AboutPage />}/>
|
<Route path='#/about' component={<AboutPage />} />
|
||||||
</HashRouter>
|
</HashRouter>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue