Billy Chan c2fc62a903
GraphQL based Admin Dashboard with Loco and Seaography (#2297)
* backend

* frontend

* frontend

* README

* CI

* fmt

* docs

* edit

* rename

* Bump seaography to 1.0

* Cargo.lock
2024-08-09 11:13:45 +08:00

13 lines
269 B
TypeScript

import type { ReactNode } from 'react';
import {
Layout as RALayout,
CheckForApplicationUpdate,
} from "react-admin";
export const Layout = ({ children }: { children: ReactNode }) => (
<RALayout>
{children}
<CheckForApplicationUpdate />
</RALayout>
);