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