import "./index.scss"; export function Card({ featured, children, }: { featured: boolean; children: React.ReactNode; }) { return (
{children}
); }