import React, { FunctionComponent, HTMLAttributes } from 'react';
import classNames from '../../lib/classNames';
import getClassname from '../../helpers/getClassName';
import usePlatform from '../../hooks/usePlatform';
import HorizontalScroll from '../HorizontalScroll/HorizontalScroll';
export type CardScrollProps = HTMLAttributes;
const CardScroll: FunctionComponent = ({ children, className, style, ...restProps }: CardScrollProps) => {
const platform = usePlatform();
return (
);
};
export default CardScroll;