import React, { FunctionComponent, HTMLAttributes } from 'react'; import classNames from '../../lib/classNames'; const HorizontalScroll: FunctionComponent> = (props: HTMLAttributes) => { const { children, className, ...restProps } = props; return (
{children}
); }; export default HorizontalScroll;