Fix lint errors for src/App.tsx

This commit is contained in:
zeon-neon[bot] 2024-06-16 04:57:23 +00:00 committed by GitHub
parent fbec2dddc7
commit f5f2e7e1c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +1,18 @@
import React from 'react'; import React from 'react'
import Main from './components/main'; import Main from './components/main'
import Navbar from './components/navbar'; import Navbar from './components/navbar'
import InfogramBelowMain from './components/infobelowmain'; import InfogramBelowMain from './components/infobelowmain'
// import logo from './logo.svg'; // import logo from './logo.svg';
// import './App.css'; // import './App.css';
function App() { function App () {
return ( return (
<div style={{ zIndex: 9999 }}> <div style={{ zIndex: 9999 }}>
<Main /> <Main />
<InfogramBelowMain /> <InfogramBelowMain />
<br /> <br />
</div> </div>
); )
} }
export default App; export default App