Current section: useState 16 exercises
Problem

Render an Initial State

Transcript

00:00 So our example is a simple counter and every time you click on it, it's incrementing But right now it's using the use state from react and we need to remove that and start implementing our own We're going to do this in a step-by-step manner

00:13 And so this first step your only desire is to make it so that when you refresh the page it starts at zero Clicking on it should not work yet That is for a future step to resolve So your objective in this step of the exercise series is to make it so that it renders a zero

00:33 When calling use state, but it's not going to be calling the built-in use state. Okay, let's get started