Files
firefly-iii/resources/js/pages/400.react.js

14 lines
210 B
JavaScript
Vendored

// @flow
import * as React from "react";
import { Error400Page } from "tabler-react";
type Props = {||};
function Error400(props: Props): React.Node {
return <Error400Page />;
}
export default Error400;