Skip to content

Commit 73fd586

Browse files
committed
more clean up
1 parent 83efa2e commit 73fd586

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/App.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import React, { Component } from 'react';
22
// import logo from './logo.svg';
33
import Events from './components/Events.js';
4-
import EventsForm from './components/EventsForm.js';
5-
import Header from './components/Header.js';
6-
import Sidebar from './components/Sidebar.js';
74
import base from './base.js'
85

96
class App extends Component {
@@ -13,7 +10,6 @@ class App extends Component {
1310
this.addEvent = this.addEvent.bind(this);
1411

1512
this.state = {
16-
displaySidebar: true,
1713
eventsList: {}
1814
};
1915
}
@@ -39,7 +35,6 @@ class App extends Component {
3935
}
4036

4137
render() {
42-
const displaySidebar = this.state.displaySidebar;
4338
const eventsList = this.state.eventsList;
4439

4540
return (

0 commit comments

Comments
 (0)