import React from 'react'; import {Grid, Typography} from "@mui/material"; export const BlockContentItem = ({content}) => { return ( {content || 'default text'} ) }