Files
frigate/web/src/pages/NoMatch.tsx
Blake Blackshear bdebb99b5a Use new UI (#8983)
* fixup build

* swap frontends
2024-01-31 12:56:11 +00:00

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;