import React from 'react'; import ReactDOM from 'react-dom'; import { Provider, createAtom, useAtom } from 'use-atom'; const countAtom = createAtom({ default: 0 }); const Counter = () => { const [count, setCount] = useAtom(countAtom); return (
Count: {count}
); }; const App = () => (

Counter

);