Skip to content

Commit

Permalink
dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
Choon-Chern Lim committed May 11, 2016
1 parent 755f383 commit 4ecdd39
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0,maximum-scale=1,minimum-scale=1">

<title>front-end-stack</title>
<link rel="shortcut icon" href="/assets/favicon.png"><link href="/assets/css/app.8519acff911ddd7f9033.css" rel="stylesheet"></head>
<link rel="shortcut icon" href="/assets/favicon.png"><link href="/assets/css/app.b25a1171226be677ff3d.css" rel="stylesheet"></head>
<body>

<div id="app"></div>
<script src="/assets/js/vendor.9ea6603eadb4aba22032.js"></script><script src="/assets/js/app.8519acff911ddd7f9033.js"></script></body>
<script src="/assets/js/vendor.ca87cf65e764953e2f6b.js"></script><script src="/assets/js/app.b25a1171226be677ff3d.js"></script></body>
</html>
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"clean-webpack-plugin": "0.1.9",
"css-loader": "0.23.1",
"eslint": "2.9.0",
"eslint-config-airbnb": "8.0.0",
"eslint-config-airbnb": "9.0.1",
"eslint-loader": "1.3.0",
"eslint-plugin-import": "1.6.1",
"eslint-plugin-import": "1.8.0",
"eslint-plugin-jsx-a11y": "1.2.0",
"eslint-plugin-react": "5.0.1",
"eslint-plugin-react": "5.1.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.16.1",
Expand Down
6 changes: 3 additions & 3 deletions src/js/chuck-norris/components/GetJoke.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { connect } from 'react-redux';
import { getJoke } from '../actions/index';
import RaisedButton from 'material-ui/RaisedButton';

let GetJoke = ({ joke, onGetJokeClick }) => (
const GetJoke = ({ joke, onGetJokeClick }) => (
<div>
<RaisedButton primary label="Get Joke" onClick={onGetJokeClick} />
<h2><span dangerouslySetInnerHTML={{ __html: joke }} /></h2>
Expand All @@ -23,6 +23,6 @@ GetJoke.propTypes = {
onGetJokeClick: PropTypes.func.isRequired
};

GetJoke = connect(mapStateToProps, mapDispatchToProps)(GetJoke);
const GetJokeContainer = connect(mapStateToProps, mapDispatchToProps)(GetJoke);

export default GetJoke;
export default GetJokeContainer;

0 comments on commit 4ecdd39

Please sign in to comment.