import React from "react"; interface Props { children: React.ReactNode; } const Card = ({ children }: Props) => { return (
{ children }
) } export default Card