forked from Github/frigate
13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
import Heading from "@/components/ui/heading";
|
|
|
|
function NoMatch() {
|
|
return (
|
|
<>
|
|
<Heading as="h2">404</Heading>
|
|
<p>Page not found</p>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default NoMatch;
|