mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-31 11:42:35 +00:00
22 lines
655 B
TypeScript
22 lines
655 B
TypeScript
import React from 'react';
|
|
import Container from '@material-ui/core/Container';
|
|
import Typography from '@material-ui/core/Typography';
|
|
import Box from '@material-ui/core/Box';
|
|
import ProTip from '../components/ProTip';
|
|
import Link from '../components/Link';
|
|
import Copyright from '../components/Copyright';
|
|
|
|
export default function About() {
|
|
return (
|
|
<Container maxWidth="sm">
|
|
<Box my={4}>
|
|
<Typography variant="h4" component="h1" gutterBottom>
|
|
Next.js with TypeScript example
|
|
</Typography>
|
|
<Link href="/">Go to the main page</Link>
|
|
<ProTip />
|
|
<Copyright />
|
|
</Box>
|
|
</Container>
|
|
);
|
|
} |