import React, {PropsWithChildren} from "react"; export function Card({children, className, ...props}: PropsWithChildren>): React.ReactElement { return (
{children}
); }