Files
fakemoney/src/main.ts
2026-02-27 23:10:21 +01:00

8 lines
264 B
TypeScript

/// <reference types="@angular/localize" />
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
bootstrapApplication(App, appConfig).catch((err) => console.error(err));