Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Last active February 22, 2021 15:37
Show Gist options
  • Save eamonnboyle/8dd85cb222b20e41c32c01d60295b019 to your computer and use it in GitHub Desktop.
Save eamonnboyle/8dd85cb222b20e41c32c01d60295b019 to your computer and use it in GitHub Desktop.
Weather App Tutorial - Destructuring Props
export const LocationSearch: FC<LocationSearchProps> = (props) => {}
// Simplify using destructuring
export const LocationSearch: FC<LocationSearchProps> = ({onSearch}) => {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment