import * as React from 'react'; interface Props { customClass?: string; children: React.ReactNode; } const Box = ({ customClass, children }: Props) => (
{children}
); export default Box;