Additional fix for raw AppBar component import

old
landabaso 2016-07-20 12:39:55 +02:00 committed by GitHub
parent 42feb7fd0c
commit 32aedbd940
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ import { AppBar } from 'react-toolbox/lib/app_bar';
You import from the component definition so the imported component is bundled with its dependencies but it does not require any style for you. This means that no CSS will be bundled and the component markup will **not** include any classname. It's your responsibility to provide a theme to the component to be properly style and you can do it via properties or context. For example:
```js
import { AppBar } from 'react-toolbox/lib/app_bar/AppBar.js';
import AppBar from 'react-toolbox/lib/app_bar/AppBar.js';
```
## Customizing components