source: reactapp/src/App.js@ 080a3f3

main
Last change on this file since 080a3f3 was 080a3f3, checked in by Viktor <mlviktor23@…>, 2 years ago

styled search component

  • Property mode set to 100644
File size: 687 bytes
Line 
1import { Outlet } from "react-router-dom";
2import { MainWrapper, MainTitle } from "./Components/Main.style";
3import Search from "./Components/Search.js";
4
5export default function App() {
6 //document.body.style = "background: red;";
7 return (
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>
18 <MainTitle>profesori.mk</MainTitle>
19 <Search />
20 <Outlet />
21 </MainWrapper>
22 );
23}
Note: See TracBrowser for help on using the repository browser.