Update docs to reflect recent changes.

This commit is contained in:
Arunoda Susiripala 2016-08-01 17:19:35 +05:30
parent 197db5d350
commit b828366f87
3 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ This functionality allows you to develop UI components rapidly without worrying
* Isolated environment for your components (with the use of various iframe tactics).
* Hot module reloading (even for functional stateless components).
* Works with any app (whether it's Redux, Relay or Meteor).
* Default webpack configuration similar to [Create React App](https://github.com/facebookincubator/create-react-app)
* Support for CSS (whether it's plain old CSS, CSS modules or something fancy).
* Clean and fast user interface.
* Runs inside your project (so, it uses your app's NPM modules and babel configurations out of the box).

View File

@ -114,7 +114,7 @@ start-storybook -p 6977 -s ./public
```
> You can also specify multiple static directories like this:
> ```sh
> ```sh
> start-storybook -p 6977 -s ./public
> ```

View File

@ -4,7 +4,7 @@ CSS is a dark area of React. There are tons of ways to write CSS with React.
> Arunoda wrote an [article](https://voice.kadira.io/state-of-react-and-css-501d179443d3) about that recently as well. Have a [look at it](https://voice.kadira.io/state-of-react-and-css-501d179443d3).
So, React Storybook allows you to write CSS as you like. It's configurable.
By default we have a postcss based CSS loading system which is very similar to how [create-react-app](https://github.com/facebookincubator/create-react-app) handles CSS. However you can customize the CSS setup as you wish.
## TOC