Skip to content

@eventstore-ui/[email protected]

Compare
Choose a tag to compare
@github-actions github-actions released this 14 May 09:01
· 115 commits to main since this release

Minor Changes

  • a643d2e - Get's a single item from the list store, or inserts a default and returns it.

    const item = store.getOrInsert('my-id', () => ({
        id: 'my-id',
        value: Math.random(),
    }));