Created
May 30, 2019 22:28
-
-
Save nanotroy/366c7e42a4c11e3ee6f221c686e5281c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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