Skip to content

Commit 721aacc

Browse files
committed
[fixed] Documentation on react install
npm install script documents an old version as well as the cdn download.
1 parent 9016860 commit 721aacc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/GettingStartedPage.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const Page = React.createClass({
2626
<h3>CommonJS</h3>
2727
<div className="highlight">
2828
<pre><code className="shell">{`
29-
$ npm install react@v0.10.0
29+
$ npm install react
3030
$ npm install react-bootstrap
3131
`}</code></pre>
3232
<pre><code className="js">{`
@@ -39,7 +39,7 @@ const Page = React.createClass({
3939
<h3>AMD</h3>
4040
<div className="highlight">
4141
<pre><code className="shell">{`
42-
$ bower install react#v0.10.0
42+
$ bower install react
4343
$ bower install react-bootstrap
4444
`}</code></pre>
4545
<pre><code className="js">{`
@@ -53,7 +53,7 @@ const Page = React.createClass({
5353
<p>The bower repo contains <code>react-bootstrap.js</code> and <code>react-bootstrap.min.js</code> with all components exported in the <code>window.ReactBootstrap</code> object.</p>
5454
<div className="highlight">
5555
<pre><code className="html">{`
56-
<script src="http://fb.me/react-0.10.0.js"></script>
56+
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/<react-version>/react.js"></script>
5757
<script src="path/to/react-bootstrap-bower/react-bootstrap.min.js"></script>
5858
<script>
5959
var Alert = ReactBootstrap.Alert;

0 commit comments

Comments
 (0)