Skip to content
This repository has been archived by the owner on Nov 12, 2017. It is now read-only.

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rofrischmann committed Nov 19, 2015
1 parent 9e3c9d6 commit f279a31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It simplyfies how you are styling your Components and comes in two different con
- modular & themeable
- [State API](docs/api/State.md)

The `react-look/dom` package also adds additional DOM-specific custom properties as well as a vendor-prefixing plugin.<br>
The `react-look/dom` package also adds additional DOM-specific mixins as well as a vendor-prefixing plugin.<br>
![Gzipped Size](https://img.shields.io/badge/gzipped-~14k-blue.svg)

- [media queries](docs/plugins/Mixin.md#media-queries.md)
Expand Down
6 changes: 5 additions & 1 deletion src/look.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import assign from 'object-assign'
import State from './api/State'
import StyleSheet from './api/StyleSheet'
import {create} from './api/StyleSheet'

import Look from './core'
import preconfig from './preconfig/native'
Expand All @@ -9,6 +9,10 @@ export default (Component, config) => {
return Look(Component, assign({}, preconfig, config)) // eslint-disable-line new-cap
}

const StyleSheet = {
create: create
}

export {
State,
StyleSheet
Expand Down

0 comments on commit f279a31

Please sign in to comment.