mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
|
import Page from '../Components/Page';
|
||
|
|
||
|
export default class Dashboard extends Page {
|
||
|
view() {
|
||
|
return (
|
||
|
<div>
|
||
|
<h2>{__('Dashboard')}</h2>
|
||
|
<p>{__('Seleziona una voce dal menu a sinistra')}</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|