Skip to content

Commit d11e141

Browse files
committed
Fix broken examples
1 parent 698db50 commit d11e141

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/auth-flow/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { findDOMNode } from 'react';
2-
import { HashHistory } from 'react-router/lib/HashHistory';
32
import { Router, Route, Link, Navigation } from 'react-router';
3+
import HashHistory from 'react-router/lib/HashHistory';
44
import auth from './auth';
55

66
var App = React.createClass({

examples/pinterest/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
2-
import { HashHistory } from 'react-router/lib/HashHistory';
32
import { Router, Link } from 'react-router';
3+
import HashHistory from 'react-router/lib/HashHistory';
44

55
var pictures = [
66
{id: 0, src: 'http://placekitten.com/601/601'},

examples/transitions/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { findDOMNode } from 'react';
2-
import HashHistory from 'react-router/lib/HashHistory';
32
import { Router, Route, Link, Navigation, TransitionHook } from 'react-router';
3+
import HashHistory from 'react-router/lib/HashHistory';
44

55
var App = React.createClass({
66
render() {

0 commit comments

Comments
 (0)