Skip to content

Instantly share code, notes, and snippets.

@n8rzz
Created January 24, 2022 01:26
Show Gist options
  • Save n8rzz/dcae8591184f7f1076ef83c6592b3f5f to your computer and use it in GitHub Desktop.
Save n8rzz/dcae8591184f7f1076ef83c6592b3f5f to your computer and use it in GitHub Desktop.
card-step-one.tsx
import "./styles.css";
import React from "react";
interface IProps {}
export const Card: React.FC<IProps> = (props) => {
return <div className="card">Card</div>;
};
Card.dispalyName = "Card";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment