Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
alinkedd committed May 2, 2024
1 parent 41a15dd commit 2857186
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/content/learn/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,7 @@ export default App = AppTSX;
const [enabled, setEnabled] = useState(false);
```

<<<<<<< HEAD
У цьому прикладі тип `boolean` буде заданий для змінної `enabled`, а `setEnabled` буде функцією, яка приймає або аргумент типу `boolean`, або функцію, що повертає `boolean`. Якщо ви хочете явно вказати тип для стану, передайте аргумент типу у виклику `useState`:
=======
This will assign the type of `boolean` to `enabled`, and `setEnabled` will be a function accepting either a `boolean` argument, or a function that returns a `boolean`. If you want to explicitly provide a type for the state, you can do so by providing a type argument to the `useState` call:
>>>>>>> 9e1f5cd590fd066e72dda9022237bee30b499951

```ts
// Явно задати тип "boolean"
Expand Down

0 comments on commit 2857186

Please sign in to comment.