mirror of
https://github.com/wassname/talk.git
synced 2026-07-22 13:00:29 +08:00
11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import { HorizontalGutter, Typography } from "coral-ui/components";
|
|
import React, { FunctionComponent } from "react";
|
|
|
|
const NotFound: FunctionComponent = ({ children }) => (
|
|
<HorizontalGutter>
|
|
<Typography variant="heading3">Not Found</Typography>
|
|
</HorizontalGutter>
|
|
);
|
|
|
|
export default NotFound;
|