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 Main from './components/main';
import Navbar from './components/navbar';
import InfogramBelowMain from './components/infobelowmain';
import React from 'react'
import Main from './components/main'
import Navbar from './components/navbar'
import InfogramBelowMain from './components/infobelowmain'
// import logo from './logo.svg';
// import './App.css';
function App() {
function App () {
return (
<div style={{ zIndex: 9999 }}>
<Main />
<InfogramBelowMain />
<br />
<Main />
<InfogramBelowMain />
<br />
</div>
);
)
}
export default App;
export default App