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