mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 03:52:59 +00:00
14 lines
210 B
JavaScript
Vendored
14 lines
210 B
JavaScript
Vendored
// @flow
|
|
|
|
import * as React from "react";
|
|
|
|
import { Error404Page } from "tabler-react";
|
|
|
|
type Props = {||};
|
|
|
|
function Error404(props: Props): React.Node {
|
|
return <Error404Page />;
|
|
}
|
|
|
|
export default Error404;
|