Skip to content

Commit

Permalink
fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
Elena Gromova committed Mar 23, 2024
1 parent 27d4f05 commit 45ec20c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
3. Импортировать и запустить бота:
```javascript
import ReactDOM from 'react-dom/client';
import App from '@hexlet/chatbot-v2';
import Widget from '@hexlet/chatbot-v2';
import steps from '@hexlet/chatbot-v2/example-steps';
import '@hexlet/chatbot-v2/styles';
const container = document.getElementById('root');
ReactDOM.createRoot(container)
.render(App(steps));
.render(Widget(steps));
```

Функция принимает первым параметром контейнер, в котором нужно отрисовать бота и вторым параметром шаги для работы чат-бота.
Функция принимает параметром шаги для работы чат-бота.

## Описание конфигурации шагов

Expand Down

0 comments on commit 45ec20c

Please sign in to comment.