diff --git a/README.md b/README.md
index 64ad91f..78c1cc2 100644
--- a/README.md
+++ b/README.md
@@ -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
+ return
}
}
```