1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00
2021-12-13 19:44:46 +01:00

15 lines
255 B
JavaScript

import Page from '../Components/Page.jsx';
export default class Dashboard extends Page {
view(vnode) {
return (
<div>
<h2>{__('Dashboard')}</h2>
<p>
This is the dashboard page.
</p>
</div>
);
}
}