Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 03ab319

Browse files
committed
rename
1 parent 637b26a commit 03ab319

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ Installation
1515
### Browser
1616
```
1717
<script src="path/to/chart.js"></script>
18-
<script src="path/to/react-charts.js"></script>
18+
<script src="path/to/react-chartjs.js"></script>
1919
```
2020

2121
### CommonJS
2222
```
2323
// allow the components to use the React object
24-
require('react-charts/vars').React = React;
24+
require('react-chartjs/vars').React = React;
2525
```
2626

2727
Example Usage
2828
-------------
2929
```
3030
var LineChart = Chart.React.Line; // for browser include
31-
var LineChart = require("react-charts/line"); // for commonJS
31+
var LineChart = require("react-chartjs/line"); // for commonJS
3232
3333
var MyComponent = React.createClass({
3434
render: function() {

0 commit comments

Comments
 (0)