aswi2022code-of-duty-gitlab/frontend/src/features/NotFound/NotFound.tsx @ e9103a47
1 |
import { Button, Stack } from "@mui/material" |
---|---|
2 |
import { Link as RouterLink } from 'react-router-dom' |
3 |
|
4 |
const NotFound = () => { |
5 |
|
6 |
return ( |
7 |
<Stack alignItems={"center"} sx={{my: 4}}> |
8 |
<h1>Page Not Found 😔</h1> |
9 |
<Button variant="outlined" component={RouterLink} to="/" >Return Home</Button> |
10 |
</Stack> |
11 |
)
|
12 |
}
|
13 |
|
14 |
export default NotFound |