# States and Selectors

<pre><code><strong>|-/redux
</strong>    |
        |- index.ts
        |- InfoOnboardingSlice.ts
</code></pre>

<details>

<summary>Initial State</summary>

```tsx
const initialState: InfoOnboardingItemState = {
  showInfoOnboarding: true,
  showInfoOnboardingHadError: false,
};
```

</details>

<details>

<summary>Selectors</summary>

* **getShowInfoOnboardingItem**: gets a boolean value that determines whether the user is successfully onboarded.
* **getShowInfoOnboardingHadError**: gets a boolean value that determines if an error occurred while loading the onboarding information.

</details>
