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

14 lines
210 B
JavaScript
Vendored

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