import { memo, ReactNode } from "react" import style from "./landing.module.css" export type ViewLandingProps = { title: ReactNode subtitle: ReactNode actions: ReactNode } /** * A view which displays a *really* big title and subtitle, with some actions the user can take below. * * Intended for the root / landing page of the app. */ export const ViewLanding = memo((props: ViewLandingProps) => { return (

{props.title}

{props.subtitle}

{props.actions}
) }) ViewLanding.displayName = "ViewLanding"