import React from 'react' import { SkeletonProps } from './skeleton.types' import { SkeletonWrapper } from './skeleton.style' export const Skeleton: React.FC = ({ children, isLoading, ...restprops }) => { return ( {children} ) }