All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2m24s
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
import { Application } from '@nativescript/core';
|
|
import { localize } from '@nativescript/localize';
|
|
|
|
Application.setResources({ L: localize })
|
|
|
|
Application.run({ moduleName: 'app-root' });
|
|
console.log(localize('app.name')); |