This repository has been archived on 2022-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
tribalwarshelp.com/src/common/Layout.js

19 lines
310 B
JavaScript

import React from 'react';
import { Box } from '@material-ui/core';
const Layout = ({ children }) => {
return (
<Box
display="flex"
minHeight="100vh"
alignItems="center"
justifyContent="center"
paddingY={3}
>
{children}
</Box>
);
};
export default Layout;