diff --git a/README.md b/README.md
index 206a2fa4..451ccf29 100644
--- a/README.md
+++ b/README.md
@@ -136,7 +136,11 @@ You can import each hook individually import useToggle from 'react-use/lib
-Depending on your bundler you might run into a missing dependency error. 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 by adding the following config to your `.babelrc` file:
+or use ES6 named imports 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 by adding the following config to your `.babelrc` file:
```json