react-render-fam
react-render-fam copied to clipboard
WithState
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?