import React from 'react'; type Props = { children?: JSX.Element[] | JSX.Element; } export const BlockHead: React.FC = ({children}) => { return(
{children}
) }