listmonk/frontend/my/src/Dashboard.js

15 lines
237 B
JavaScript
Raw Normal View History

2018-10-25 15:51:47 +02:00
import React from 'react';
class Dashboard extends React.PureComponent {
componentDidMount = () => {
this.props.pageTitle("Dashboard")
}
2018-10-25 15:51:47 +02:00
render() {
return (
<h1>Welcome</h1>
);
}
}
export default Dashboard;