/** @public */ export interface EmptyStateProps { message: string } /** The empty state shown when a thread has no comments yet. @public @react */ export function EmptyState({ message }: EmptyStateProps) { return (

{message}

) }