mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 22:35:42 +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;
|