mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
Il nuovo sistema si basa sul sistema nativo di Laravel. Le traduzioni e la lingua dell'utente vengono passati a JS (mithril) tramite Inertia. C'è anche una route per modificare la lingua.
13 lines
233 B
JavaScript
Vendored
13 lines
233 B
JavaScript
Vendored
import Page from '../Components/Page';
|
|
|
|
export default class SetupPage extends Page {
|
|
// eslint-disable-next-line no-unused-vars
|
|
view(vnode) {
|
|
return (
|
|
<>
|
|
<p>{this.__('Hello World!')}</p>
|
|
</>
|
|
);
|
|
}
|
|
}
|