source: reactapp/src/App.js@ 74b8c52

main
Last change on this file since 74b8c52 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
RevLine 
[e958037]1import { Outlet } from "react-router-dom";
2import { MainWrapper, MainTitle } from "./Components/Main.style";
[7cb8c3c]3
4export default function App() {
[e958037]5 //document.body.style = "background: red;";
[7cb8c3c]6 return (
[e958037]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>
[7cb8c3c]18 <Outlet />
[e958037]19 </MainWrapper>
[7cb8c3c]20 );
[2998dc4]21}
Note: See TracBrowser for help on using the repository browser.