Skip to content

Commit

Permalink
Small typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Jun 4, 2016
1 parent 27a4420 commit cea8111
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -57,15 +57,15 @@ As you can see in the previous block, each folder includes: a Javascript file fo
You import from the index file so the imported component comes with all dependencies and themes already required and injected for you. This means that the CSS for each dependency will be bundled in your final CSS automatically and the component markup includes the classnames to be styled. For example:

```js
import { AppBar } from 'react-toolbox/lib/app_bar;
import { AppBar } from 'react-toolbox/lib/app_bar';
```

### Raw component

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
Expand Down
4 changes: 2 additions & 2 deletions docs/app/components/layout/install/install.md
Expand Up @@ -55,15 +55,15 @@ As you can see in the previous block, each folder includes: a Javascript file fo
You import from the index file so the imported component comes with all dependencies and themes already required and injected for you. This means that the CSS for each dependency will be bundled in your final CSS automatically and the component markup includes the classnames to be styled. For example:

```js
import { AppBar } from 'react-toolbox/lib/app_bar;
import { AppBar } from 'react-toolbox/lib/app_bar';
```

### Raw component

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
Expand Down

0 comments on commit cea8111

Please sign in to comment.