source: reactapp/src/App.js@ 3e98cea

main
Last change on this file since 3e98cea was 3e98cea, checked in by unknown <mlviktor23@…>, 2 years ago

added SearchResults page, hide search dropdown when out of focus

  • Property mode set to 100644
File size: 731 bytes
RevLine 
[e958037]1import { Outlet } from "react-router-dom";
[3e98cea]2import { MainWrapper, MainTitle } from "./Components/Styled/Main.style";
[080a3f3]3import Search from "./Components/Search.js";
[7cb8c3c]4
5export default function App() {
[e958037]6 //document.body.style = "background: red;";
[7cb8c3c]7 return (
[e958037]8 <MainWrapper>
9 <style>
10 @import
11 url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
12 </style>
13 <style>
14 {
15 "body { background-color: papayawhip;} * {margin: 0; padding: 0; box-sizing: border-box;}"
16 }
17 </style>
[3e98cea]18 <a href="/">
19 <MainTitle>profesori.mk</MainTitle>
20 </a>{" "}
21 <Search />
[7cb8c3c]22 <Outlet />
[e958037]23 </MainWrapper>
[7cb8c3c]24 );
[2998dc4]25}
Note: See TracBrowser for help on using the repository browser.