Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Created February 22, 2021 15:35
Show Gist options
  • Save eamonnboyle/4bcc682b27367f0d1f64c9f17a65b245 to your computer and use it in GitHub Desktop.
Save eamonnboyle/4bcc682b27367f0d1f64c9f17a65b245 to your computer and use it in GitHub Desktop.
Weather App Tutorial - Specify Component Props
interface LocationSearchProps {
onSearch: (search: string) => void;
}
export const LocationSearch: FC<LocationSearchProps> = (props) => {
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment