import { MainCard } from './MainCard'; import { ReactNode } from 'react'; interface ShadowBoxProps { shadow: string; children: ReactNode; } function ShadowBox({ shadow, children, ...props }: ShadowBoxProps) { return ( {children} ); } export { ShadowBox };