import { ReactNode } from "react" type ViewLandingProps = { title: ReactNode subtitle: ReactNode actions: ReactNode } export function ViewLanding(props: ViewLandingProps) { return (

{props.title}

{props.subtitle}

{props.actions}
) }