Last active
December 31, 2019 19:28
-
-
Save jsjoeio/faa3301a768c30a95d73597cd9d36220 to your computer and use it in GitHub Desktop.
React component
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 React from 'react' | |
| type Props = { | |
| text: string; | |
| color: string; | |
| } | |
| export const Header: React.FC<Props> = ({text = 'Hello world!', color = 'red'}) => { | |
| return <h1 style={{ color }}>{text}</h1> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment