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