Skip to content

Instantly share code, notes, and snippets.

@mickaelw
Last active August 18, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mickaelw/8426952250d2108ebb3ef7f40faba4bc to your computer and use it in GitHub Desktop.
Save mickaelw/8426952250d2108ebb3ef7f40faba4bc to your computer and use it in GitHub Desktop.
export const BookInformationCard: FunctionComponent<Props> = ({ book }) => {
return book ? <p>{ book.title }</p> : <p>No book</p>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment