Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules/
build/
coverage/

package-lock.json
index.d.ts
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# react-multi-level-selector
# react-select-multi-level

:bell: React component for Multi level options Selector for your application.

Expand All @@ -7,14 +7,14 @@
## Installation

```bash
npm install --save react-multi-level-selector
npm install --save react-select-multi-level
```

## Usage

```Javascript
import React from 'react';
import MultiLevelSelect from 'react-multi-level-selector';
import MultiLevelSelect from 'react-select-multi-level';

const options = [
{ value: 'fruits', label: 'Fruits',
Expand Down Expand Up @@ -43,7 +43,7 @@ const options = [
options: [
{ value: 'dublin', label: 'Dublin' },
{ value: 'new york', label: 'New York' },
{ value: 'san fransis', label: 'San Fransis' },
{ value: 'san fransisco', label: 'San Fransisco' },
],
},

Expand Down
Loading