In a functional component in React, you can manage state using the useState hook. To update the state, you can use the setState function returned by the useState hook.
Here's an example of how to use useState and setState:
index.tsx290 chars17 linesIn the above example, useState is used to declare a state variable count with an initial value of 0. The setCount function is used to update the state. In the increment function, we call setCount(count + 1) to update the count state.
When the Click me button is clicked, the increment function is called, which in turn calls setCount. This triggers a re-render of the component with the new count value, which is then displayed in the p element.
gistlibby LogSnag