import { TEST_WORKSPACE } from '../common'; import { Content, P, Template, Title, Workspace, type WorkspaceProps, } from '../components'; export type OwnershipTransferredProps = { workspace: WorkspaceProps; }; export default function OwnershipTransferred(props: OwnershipTransferredProps) { const { workspace } = props; return ( ); } OwnershipTransferred.PreviewProps = { workspace: TEST_WORKSPACE, };