페이스북에서 만든 상태 관리 라이브러리 React를 위한 상태 관리 라이브러리라고 함.
redux의 store처럼 Atoms이 존재함. 상태를 정의하는 방법.
export const todoListState = atom({
key: 'todoListState',
default: []
});
const [todoList, setTodoList] = useRecoilState(todoListState)
const todoList = useRecoilValue(todoListState)
const setTodoList = useSetRecoilState(todoListState)
const resetTodoList = useResetRecoilState(todoListState);