import { Heading, HeadingLevel } from "@ariakit/react"; import { LoadingIndicator } from "@indietabletop/appkit"; import type { ReactNode } from "react"; import * as css from "./style.css.ts"; export function InfoPage(props: { heading: string; description: ReactNode; action?: ReactNode; }) { return (
{props.heading}

{props.description}

{props.action && (
{props.action}
)}
); } export function LoadingPage() { return (
); } export function LoadingView() { return (
); }