import React from 'react' export type SkeletonProps = { className?: string style?: React.CSSProperties } // stock skeleton export const Skeleton = ({ style, className }: SkeletonProps) => { return ( ) }