type Props = { children: React.ReactNode; title: string; }; export const BlockFrame = ({ children, title }: Props) => { return (
{title}
{children}
); };