1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

feat: Ristrutturazione completa del progetto

This commit is contained in:
Maicol Battistini
2023-04-20 20:00:38 +02:00
parent 805cc35334
commit 2ea9606a38
224 changed files with 9985 additions and 15363 deletions

View File

@@ -0,0 +1,15 @@
import {Component} from '../Component';
export class Footer extends Component {
view() {
return (
<footer>
<a href="https://openstamanager.com">{__('OpenSTAManager')}</a>
<div class="right-footer">
<strong>{__('Versione')}</strong> {app.VERSION}&nbsp;
<small>(<code>{app.REVISION}</code>)</small>
</div>
</footer>
);
}
}