Skip to content

Instantly share code, notes, and snippets.

@jsjoeio
Last active December 31, 2019 19:28
Show Gist options
  • Select an option

  • Save jsjoeio/faa3301a768c30a95d73597cd9d36220 to your computer and use it in GitHub Desktop.

Select an option

Save jsjoeio/faa3301a768c30a95d73597cd9d36220 to your computer and use it in GitHub Desktop.
React component
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