diff --git a/src/App.styled.tsx b/src/App.styled.tsx new file mode 100644 index 00000000..f1a830e5 --- /dev/null +++ b/src/App.styled.tsx @@ -0,0 +1,7 @@ +import styled from 'styled-components' + +const StyledOutletWrapper = styled.section` + height: calc(100% - 200px); + overflow: scroll; +` +export { StyledOutletWrapper as OutletWrapper } diff --git a/src/App.tsx b/src/App.tsx index 6a915217..9ebcfe35 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,7 +4,9 @@ import { useMsal, } from '@azure/msal-react' import { Outlet } from 'react-router-dom' +import * as Styled from './App.styled' import AppBar from './features/AppBar/AppBar' +import { Footer } from './features/Footer/Footer' export function App() { const { instance } = useMsal() @@ -15,7 +17,10 @@ export function App() {

Authenticated

- + + + +