Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Last active March 22, 2019 08:01
Show Gist options
  • Save FermiDirak/913fbc2fde63584529abf45d9e98394c to your computer and use it in GitHub Desktop.
Save FermiDirak/913fbc2fde63584529abf45d9e98394c to your computer and use it in GitHub Desktop.
type Props = {
name?: string,
nick?: number,
}
export default function NameDisplay({
name='',
nick='',
}: Props) {
return (
<div> {name}, nicknamed {nick} </div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment