mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import React, { FunctionComponent } from "react";
|
|
|
|
export const PageNotFound: FunctionComponent = () => {
|
|
return <h1>Page not found.</h1>;
|
|
};
|