Skip to content

Grammar fixes #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ import {FancyButton} from './styles.react.css'

### Composite components

In fact any React components which accepts `className` props can be used as a
base. That's means that React CSS Components can be used as theming tool for any
In fact any React component which accepts `className` props can be used as a
base. That means that React CSS Components can be used as theming tool for any
UI library.

Example:
Expand All @@ -114,7 +114,7 @@ DangerButton {

## Variants

Variants is a mechanism which allows to define styling variants for a component.
Variants is a mechanism which allows defining component styling variants.

### Named variants

Expand Down Expand Up @@ -153,7 +153,7 @@ Label:prop(mode == "emphasis") {
}
```

Note that any free variable reference a member of `props`, thus in JS `mode`
Note that any free variable references a member of `props`, thus in JS `mode`
becomes `props.mode` in the example above.

They are compiled as CSS classes as well. JS expressions within `prop(..)` are
Expand Down