mirror of
https://github.com/Wessel/nhl-setgame.git
synced 2026-07-19 06:54:31 +02:00
7 lines
250 B
TypeScript
Executable File
7 lines
250 B
TypeScript
Executable File
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { appConfig } from './app/app.config';
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
bootstrapApplication(AppComponent, appConfig)
|
|
.catch((err) => console.error(err));
|