English | [简体中文](./README-zh_CN.md)

# @ray-js/search-device-tip-modal

[![latest](https://img.shields.io/npm/v/@ray-js/search-device-tip-modal/latest.svg)](https://www.npmjs.com/package/@ray-js/search-device-tip-modal) [![download](https://img.shields.io/npm/dt/@ray-js/search-device-tip-modal.svg)](https://www.npmjs.com/package/@ray-js/search-device-tip-modal)

> Before searching for a device, a pop-up window for resetting the network configuration

## Installation

```sh
$ npm install @ray-js/search-device-tip-modal
# or
$ yarn add @ray-js/search-device-tip-modal
```

## Usage

### SearchDeviceTipModal Demo

```tsx
import SearchDeviceTipModal from '@ray-js/search-device-tip-modal';

<SearchDeviceTipModal
  show={show}
  onClickOverlay={() => setShow(false)}
  onCloseButtonClick={() => setShow(false)}
  onMoreButtonClick={handleBtnClick}
  onAddButtonClick={handleBtnClick}
  dataSource={dataSource}
/>;
```