Files
PeerNotes/frontend/src/App.tsx

23 lines
462 B
TypeScript
Raw Normal View History

2024-03-12 16:21:30 -04:00
import './App.css'
import MainSearch from './components/MainSearch';
2024-03-12 16:21:30 -04:00
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>
2024-03-12 16:21:30 -04:00
</>
)
}
export default App