Skip to content

Instantly share code, notes, and snippets.

@nanotroy
Created May 30, 2019 22:28
Show Gist options
  • Select an option

  • Save nanotroy/366c7e42a4c11e3ee6f221c686e5281c to your computer and use it in GitHub Desktop.

Select an option

Save nanotroy/366c7e42a4c11e3ee6f221c686e5281c to your computer and use it in GitHub Desktop.
const Footer = ({ visibility }: TodoStore) => (
hc('div', [
ht('span', 'Show: '),
Filter(visibility, Visibility.ALL, 'All'),
Filter(visibility, Visibility.TODO, 'Active'),
Filter(visibility, Visibility.DONE, 'Completed'),
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment