diff --git a/README.md b/README.md
index be438b1a1e..7f01d4b871 100644
--- a/README.md
+++ b/README.md
@@ -123,36 +123,25 @@
- [`useList`](./docs/useList.md) — tracks state of an array.
- [`useMap`](./docs/useMap.md) — tracks state of an object.
-## Usage
-You need to have React [`16.8.0`](https://reactjs.org/blog/2019/02/06/react-v16.8.0.html) or later installed to use the Hooks API. You can import each hook individually
-
-```js
-import useToggle from 'react-use/lib/useToggle'
-```
-
-or use ES6 named imports
-
-```js
-import {useToggle} from 'react-use'
-```
-
-Depending on your bundler you might run into a missing dependency error with ES6 named import statements. Some hooks require you to install peer dependencies so we recommend using individual imports. If you want the best of both worlds you can transform the named import statements to individual import statements with [`babel-plugin-import`](https://github.com/ant-design/babel-plugin-import) by adding the following config to your `.babelrc` file:
-
-```json
-[
- "import", {
- "libraryName": "react-use",
- "libraryDirectory": "lib",
- "camel2DashComponentName": false
- }
-]
-```
-
-
License
+
+
+
+
+
+
+
- Unlicense — public domain.
+ Usage — how to import.
+
+ Unlicense — public domain.
+
+
+
+
+
+
[img-demo]: https://img.shields.io/badge/demo-%20%20%20%F0%9F%9A%80-green.svg
diff --git a/docs/Usage.md b/docs/Usage.md
new file mode 100644
index 0000000000..07fd9987d9
--- /dev/null
+++ b/docs/Usage.md
@@ -0,0 +1,25 @@
+# Usage
+
+You need to have React [`16.8.0`](https://reactjs.org/blog/2019/02/06/react-v16.8.0.html) or later installed to use the Hooks API. You can import each hook individually
+
+```js
+import useToggle from 'react-use/lib/useToggle'
+```
+
+or use ES6 named imports
+
+```js
+import {useToggle} from 'react-use'
+```
+
+Depending on your bundler you might run into a missing dependency error with ES6 named import statements. Some hooks require you to install peer dependencies so we recommend using individual imports. If you want the best of both worlds you can transform the named import statements to individual import statements with [`babel-plugin-import`](https://github.com/ant-design/babel-plugin-import) by adding the following config to your `.babelrc` file:
+
+```json
+[
+ "import", {
+ "libraryName": "react-use",
+ "libraryDirectory": "lib",
+ "camel2DashComponentName": false
+ }
+]
+```
diff --git a/package.json b/package.json
index 8f242bba5b..7b4c047ab4 100644
--- a/package.json
+++ b/package.json
@@ -44,8 +44,6 @@
},
"homepage": "https://github.com/streamich/react-use#readme",
"dependencies": {
- "@babel/plugin-syntax-dynamic-import": "^7.2.0",
- "babel-plugin-dynamic-import-node": "^2.2.0",
"copy-to-clipboard": "^3.1.0",
"nano-css": "^5.1.0",
"react-fast-compare": "^2.0.4",
@@ -65,6 +63,8 @@
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
+ "@babel/plugin-syntax-dynamic-import": "7.2.0",
+ "babel-plugin-dynamic-import-node": "^2.2.0",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/npm": "5.1.7",