React component for Telegram Web Apps (TWA) Back Button
npm install @twa-dev/backbutton> DEPRECATED
>
> BackButton moved to @twa-dev/sdk. This repo and corresponding npm-package are deprecated.
React component for Telegram Web Apps (TWA) Back Button.
```
npm i @twa-dev/backbutton
`js
const BackButton = window.Telegram.WebApp.BackButton;
BackButton.show();
BackButton.onClick(() => window.history.back());
`
It's not the best way to write code, especially if you use libraries like React.
This package exports React component that wraps TWA BackButton SDK:
`js
import BackButton from '@twa-dev/backbutton';
``