Files
PeerNotes/frontend/src/App.tsx
Sahej Panag c5395db154 changes mentioned by alexa (#7)
* changes mentioned by alexa

* removing redundancy

---------

Co-authored-by: Sahej Panag <spanag3@gatech.edu>
2024-04-11 00:44:10 -04:00

23 lines
462 B
TypeScript

import './App.css'
import MainSearch from './components/MainSearch';
function App() {
return (
<>
<div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' , gap: 15}}>
<img
src="/PeerNotes.png"
alt="PeerNotes Logo"
style={{
height: "100px"
}}
/>
<MainSearch />
</div>
</>
)
}
export default App