import { TinaMarkdown } from 'tinacms/dist/rich-text'; import { motion } from 'framer-motion'; import './BlockTextBlock.css'; interface Props { content?: unknown; width?: 'full' | 'narrow'; } const BlockTextBlock: React.FC = ({ content, width = 'full' }) => { if (!content) return null; return (
); }; export default BlockTextBlock;