From 92b6f344318f17ef53a578595e51fee0708f30af Mon Sep 17 00:00:00 2001 From: ustccjw <317713370@qq.com> Date: Mon, 2 Nov 2015 09:30:39 +0800 Subject: [PATCH] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cee446e1..147dbdf6 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ const CustomButton = () => ( export default CustomButton; ``` -The previous code creates a React button component based on React toolbox button. It's important to notice that requiring a module from the exposed root of the package will import the **ES6 JSX** and **SASS** of the component. If you want to still use CSS Modules but avoiding [Babel](https://babeljs.io/) and [SASS](http://sass-lang.com/) you can require from `react-toolbox/lib`. +The previous code creates a React button component based on React toolbox button. It's important to notice that requiring a module from the exposed root of the package will import the **SASS** of the component. We encourage you to work with webpack but if you want to use React Toolbox in an old fashioned way you must generate a build with all the css and javascript and include it in your `index.html`. Then you can use the components exposed in the `window` object.