mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-10 07:49:38 +00:00
Fix lint errors for src/App.tsx
This commit is contained in:
parent
fbec2dddc7
commit
f5f2e7e1c4
1 changed files with 10 additions and 10 deletions
20
src/App.tsx
20
src/App.tsx
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue