mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-07 22:05:44 +03:00
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;
|