mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 19:50:55 +00:00
14 lines
210 B
JavaScript
14 lines
210 B
JavaScript
![]() |
// @flow
|
||
|
|
||
|
import * as React from "react";
|
||
|
|
||
|
import { Error503Page } from "tabler-react";
|
||
|
|
||
|
type Props = {||};
|
||
|
|
||
|
function Error503(props: Props): React.Node {
|
||
|
return <Error503Page />;
|
||
|
}
|
||
|
|
||
|
export default Error503;
|