source: reactapp/src/App.js@ 0ae838b

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

added styling to /professor/{professorId} page

  • Property mode set to 100644
File size: 625 bytes
Line 
1import { Outlet } from "react-router-dom";
2import { MainWrapper, MainTitle } from "./Components/Main.style";
3
4export default function App() {
5 //document.body.style = "background: red;";
6 return (
7 <MainWrapper>
8 <style>
9 @import
10 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');
11 </style>
12 <style>
13 {
14 "body { background-color: papayawhip;} * {margin: 0; padding: 0; box-sizing: border-box;}"
15 }
16 </style>
17 <MainTitle>profesori.mk</MainTitle>
18 <Outlet />
19 </MainWrapper>
20 );
21}
Note: See TracBrowser for help on using the repository browser.