# useState

## Syntax

```javascript
const [state, setState] = useState(optionalInitialState);
```

Where:

1. `const [state,setState]` : Return of `useState`, the arguments allow reading and updating of the state associated with the hook instance.
   * `state` : Current state.
   * `setState`: Current status updater.
2. `useState( optionalInitialState )`: Function that associates the state to the webcomponent:
   * `optionalInitialState`: Optional parameter that defines the initial state associated to the hook instance, **If `optionalInitialState` is a function it will be executed in order to obtain the initial state only at the moment of the hook instance for the first time**.

### Example

```jsx
function MyComponent() {
  const [count, setCount] = useState(0);
  return <host onclick={() => setCount(count + 1)}> {count} </host>;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://atomico.gitbook.io/doc/api/hooks/usestate.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
