react-render-fam icon indicating copy to clipboard operation
react-render-fam copied to clipboard

WithState

Open danieldelcore opened this issue 5 years ago • 0 comments

A useState wrapper

<WithState initialState={'World'}>
   {(location, setLocation) => (
      <p>Hello, {state}</p>
      <button type="button" onClick={e => setLocation('Earth')} />
   )}
</WithState>

Why is this useful? It's not but who cares?

danieldelcore avatar Feb 28 '20 23:02 danieldelcore