saahildcom/src/App.tsx

19 lines
365 B
TypeScript
Raw Normal View History

2024-06-11 03:46:47 +00:00
import React from 'react';
2024-06-12 02:37:31 +00:00
import Main from './components/main';
2024-06-16 04:57:13 +00:00
import Navbar from './components/navbar';
import InfogramBelowMain from './components/infobelowmain';
2024-06-11 03:46:47 +00:00
// import logo from './logo.svg';
// import './App.css';
function App() {
return (
2024-06-12 02:37:31 +00:00
<div style={{ zIndex: 9999 }}>
<Main />
2024-06-16 04:57:13 +00:00
<InfogramBelowMain />
<br />
2024-06-11 03:46:47 +00:00
</div>
);
}
export default App;