Consuming State
import { StateConsumer } from './stateContext'; | |
export default function SomeCount () { | |
return ( | |
<StateConsumer> | |
{state => ( | |
<p> | |
Count: {state.count} | |
</p> | |
)} | |
</StateConsumer> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment