import { typedjson } from "remix-typedjson"; import { LinkButton } from "~/components/primitives/Buttons"; import { Header2 } from "~/components/primitives/Headers"; import { Paragraph } from "~/components/primitives/Paragraph"; import { dashboardLoader } from "~/services/routeBuilders/dashboardBuilder"; export const loader = dashboardLoader({ authorization: { requireSuper: true } }, async () => { return typedjson({}); }); export default function BackOfficeIndex() { return (
Back office Back-office actions are applied to a single organization. Pick an org from the Organizations tab to open its detail page. Pick an organization
); }