1. Recoil이란?


2. 사용 핵심


3. RecoilRoot는 뭔가요?


4. Atom

[src/store/index.js]

import { atom } from "recoil";  

export const textState = atom({
    key: 'textState', // unique ID (atom을 구분할 수 있는 유일한 키)
    default: '', // atom의 default값
})