mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
11dc407b36
* Further improve loading * Add document titles to pages * Cleanup
18 lines
302 B
TypeScript
18 lines
302 B
TypeScript
import Heading from "@/components/ui/heading";
|
|
import { useEffect } from "react";
|
|
|
|
function NoMatch() {
|
|
useEffect(() => {
|
|
document.title = "Not Found - Frigate";
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Heading as="h2">404</Heading>
|
|
<p>Page not found</p>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default NoMatch;
|