import type { ReactNode } from 'react' import { AppMainCard } from './app-main-card' interface WorkspacePlaceholderProps { title: string rightAside?: ReactNode } export function WorkspacePlaceholder ({ title, rightAside }: WorkspacePlaceholderProps) { return (
{title}
{rightAside}
) }