2. RecoilRoot

atom() ์˜ ์ปจํ…์ŠคํŠธ๋ฅผ ์ œ๊ณตํ•˜๋Š” Provider ์ž…๋‹ˆ๋‹ค. Recoil ์˜ hooks ๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๋ชจ๋“  ์ปดํฌ๋„ŒํŠธ์˜ ์ตœ์ƒ์œ„ ์ปดํฌ๋„ŒํŠธ์— ์„ ์–ธ๋˜์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.

import React from 'react';
import { RecoilRoot } from 'recoil';

function App() {
  return (
    <RecoilRoot>
      Hello Recoil !
    </RecoilRoot>
  );
}

export default App;

Last updated

Was this helpful?