mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-10 15:49:40 +00:00
18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
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 () {
|
|
return (
|
|
<div style={{ zIndex: 9999 }}>
|
|
<Main />
|
|
<InfogramBelowMain />
|
|
<br />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|