UNPKG
react-tately
Version:
latest (1.0.0)
1.0.0
Minimal, powerful global state manager for React
react-tately
/
src
/
store.ts
7 lines
(3 loc)
•
118 B
text/typescript
View Raw
1
2
3
4
5
6
7
// store.ts
import
{ createStore }
from
'./createStore'
export
const
useCounter =
createStore
({
count
:
0
});