Created
January 24, 2022 01:26
-
-
Save n8rzz/dcae8591184f7f1076ef83c6592b3f5f to your computer and use it in GitHub Desktop.
card-step-one.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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