We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798171a commit e571348Copy full SHA for e571348
.eslintignore
@@ -2,10 +2,4 @@ dist/
2
node_modules/
3
webpack.config.js
4
5
-docs/node_modules
6
-docs/public
7
-docs/.babelrc
8
-docs/index.js
9
-docs/package.json
10
-docs/server.js
11
-docs/webpack.config.development.js
+docs/
docs/client/components/AppNavbar/index.js
@@ -9,14 +9,14 @@ class Navbar extends React.Component {
super(props);
this.state = {
activeLink: '',
12
- }
+ };
13
this.handleNavClick = this.handleNavClick.bind(this);
14
}
15
16
handleNavClick(activeLink) {
17
this.setState({
18
activeLink,
19
- })
+ });
20
21
22
render() {
0 commit comments