Skip to content

Instantly share code, notes, and snippets.

@iazel
Last active July 11, 2019 22:03
Show Gist options
  • Save iazel/e53ce46c8bac026d1f3e2619d49623fe to your computer and use it in GitHub Desktop.
Save iazel/e53ce46c8bac026d1f3e2619d49623fe to your computer and use it in GitHub Desktop.
Composable Reactive UI / TodosList - Reactive
import { c$map } from '@crui/reactive/setups/map'
const TodoList = (store: TodoStore) =>
h('ul', c$map(
store.todos,
TodoElement,
))
const TodoElement = ({ text }: Todo) =>
ht('li', text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment