mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
15 lines
255 B
React
15 lines
255 B
React
|
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>
|
||
|
);
|
||
|
}
|
||
|
}
|