프로그래밍/ReactJS

recoil 새로고침 데이터 유지

타코코딩 2023. 11. 15. 11:33
import { atom } from "recoil";
import { recoilPersist } from 'recoil-persist';

const { persistAtom } = recoilPersist();


export const productsState = atom({
    key:'productsState',
    default:[],
    effects_UNSTABLE: [persistAtom]
})

1. npm i recoil-persist 후 진행

'프로그래밍 > ReactJS' 카테고리의 다른 글

svg animation  (0) 2023.11.18
스크롤이벤트  (0) 2023.11.18
react-beautiful-dnd 설치 및 사용  (0) 2023.11.10
react query  (0) 2023.11.03
react styled-components로 다크모드 구현하기  (0) 2023.10.25