ReactMasters / state-manager

상태관리 라이브러리
MIT License
0 stars 0 forks source link

StoreManager 래퍼 복원 #21

Closed 56aiden90 closed 1 month ago

56aiden90 commented 1 month ago

실제 사용 경험 고려해서 함수 명과 구조 정할 것.

JeGwan commented 1 month ago

갖춰야할 것

e.g.

// 정의
const store = createStore(0)

// Use reactive state
const count = useReactive(store)

// 상태 업데이트
store.set(2)

// 변하지 않는 참조로부터 최신값 가져오기 (ref 처럼 쓰기)
useEffect(() => {
  store.get()
}, [])
jordan-choi commented 1 month ago

10 , #16 과 동일