Skip to content

Instantly share code, notes, and snippets.

@jednano
Last active September 18, 2019 19:18
Show Gist options
  • Save jednano/f4f857f811c4eb961c4024c3e7696305 to your computer and use it in GitHub Desktop.
Save jednano/f4f857f811c4eb961c4024c3e7696305 to your computer and use it in GitHub Desktop.
TypeScript/React
import * as React from 'react';
interface Props {
bar: string | number;
}
const Foo: React.FC<Props> = (props) => (
<div>{props.bar}</div>
)
export default Foo
@jednano
Copy link
Author

jednano commented Sep 18, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment