Identifiable state
A simple extension which allows to associate string metadata with a state.
Counter: 1
import React from 'react';import { useHookstate } from '@hookstate/core';import { identifiable } from '@hookstate/identifiable';export const ExampleComponent = () => {const state = useHookstate(1, identifiable('my-counter'))return <><p>Counter: {state.value}</p><p><button onClick={() => state.set(p => p + 1)}>Increment the '{state.identifier}' counter</button></p></>}