mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 19:56:19 -04:00
* changes mentioned by alexa * removing redundancy --------- Co-authored-by: Sahej Panag <spanag3@gatech.edu>
23 lines
462 B
TypeScript
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
|