import * as React from "react" import clsx from "clsx" import { FadeIn } from "./FadeIn" export type FallbackMessageProps = React.ComponentPropsWithoutRef<"div"> & { title: string body: string } export const FallbackMessage = React.forwardRef(function FallbackMessage( props: FallbackMessageProps, ref: React.ForwardedRef ) { const { title, body, className, ...other } = props return (

{title}

{body}

) })