import * as React from 'react'; import Container from '@mui/material/Container'; import Box from '@mui/material/Box'; import Markdown from './modules/components/Markdown'; import Typography from './modules/components/Typography'; import AppAppBar from './modules/views/AppAppBar'; import AppFooter from './modules/views/AppFooter'; import withRoot from './modules/withRoot'; import terms from './modules/views/terms.md'; function Terms() { return ( Terms {terms} ); } export default withRoot(Terms);