Card.tsx 103 B

12345
  1. import * as React from "react";
  2. export const Card: React.FC = () => {
  3. return <div>Hello</div>;
  4. };