Skip to content

Commit 533d3cf

Browse files
authored
Merge pull request javivelasco#5 from c0/fix-readme
Change references from react-themr to react-css-themr
2 parents f0225cd + 504e1e0 commit 533d3cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Say you have a `Button` component you want to make themeable. You should pass a
4141
```jsx
4242
// Button.js
4343
import React, { Component } from 'react';
44-
import { themr } from 'react-themr';
44+
import { themr } from 'react-css-themr';
4545

4646
@themr('MyThemedButton')
4747
class Button extends Component {
@@ -80,7 +80,7 @@ If you use a component with a base theme, you may to want import the component w
8080
```jsx
8181
// SuccessButton.js
8282
import React, { Component } from 'react';
83-
import { themr } from 'react-themr';
83+
import { themr } from 'react-css-themr';
8484
import successTheme from './SuccessButton.css';
8585

8686
@themr('MySuccessButton', successTheme)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"css-modules",
2121
"customization",
2222
"react",
23-
"react-themr",
23+
"react-css-themr",
2424
"theming"
2525
],
2626
"devDependencies": {

0 commit comments

Comments
 (0)