Skip to content

Commit 61b5ea2

Browse files
committed
remove unnecessary logs
1 parent 8a1d34d commit 61b5ea2

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import Background from "./Background";
55
class App extends Component {
66
render() {
77
const { width, height } = this.props.size;
8-
console.log(this.props);
98
return (
109
<div className="App">
1110
<Background width={width} height={height} />

src/Gallery.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ class Gallery extends Component {
112112
let nextIndex =
113113
(this.state.slideIndex + num + models.length) % models.length;
114114

115-
console.log(nextIndex);
116115
this.setState({
117116
slideIndex: nextIndex
118117
});

src/Navigation.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,6 @@ const DefaultLayout = ({ component: Component, size, ...rest }) => {
6767

6868
const Construction = () => <h1>This page is under construction</h1>;
6969

70+
const NotFound = () => <h1>The page you're looking for does not exist :(</h1>;
71+
7072
export default Navigation;

0 commit comments

Comments
 (0)