import { Box, Text } from '@chakra-ui/core'; import React from 'react'; export type MetaBoxProps = { title: string; children: React.ReactNode; }; export const MetaBox: React.FC = ({ children, title }) => ( {title} {children} );