import React from 'react'; export const Box: React.FC = ({children}) => { return(
{children}
) } type Props = { children: React.ReactNode };