Closed 56aiden90 closed 1 month ago
실제 사용 경험 고려해서 함수 명과 구조 정할 것.
e.g.
// 정의 const store = createStore(0) // Use reactive state const count = useReactive(store) // 상태 업데이트 store.set(2) // 변하지 않는 참조로부터 최신값 가져오기 (ref 처럼 쓰기) useEffect(() => { store.get() }, [])
실제 사용 경험 고려해서 함수 명과 구조 정할 것.