import React, { Component } from 'react';

class Dashboard  extends Component {
	constructor(props) {
	    super(props);
	    this.state = {open: true};
  	}
  	render(){
  		return(
  			<div>
  				<p>Dashboard</p>
  			</div>
		)
	}	
}
export default Dashboard;