Skip to content
Open

B2 #7

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
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@
```bash
npm install --save react-search-bar
```
or
```bash
yarn add react-search-bar
```


## Usage

```jsx
import React, { Component } from 'react'

import MyComponent from 'react-search-bar'
import { SearchBar } from 'react-search-bar'
import 'react-search-bar/dist/index.css'

class Example extends Component {
render() {
return <MyComponent />
return <SearchBar data={} />
}
}
```
Expand Down