listmonk/frontend/my/src/Dashboard.js

13 lines
190 B
JavaScript
Raw Normal View History

2018-10-25 15:51:47 +02:00
import React from 'react';
import 'antd/dist/antd.css';
class Dashboard extends React.Component {
render() {
return (
<h1>Welcome</h1>
);
}
}
export default Dashboard;