mirror of
https://github.com/bpatrik/pigallery2.git
synced 2024-12-14 11:23:17 +02:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
///<reference path="../typings/browser.d.ts"/>
|
|
|
|
import {bootstrap} from "@angular/platform-browser-dynamic";
|
|
import {AppComponent} from "./app/app.component.ts";
|
|
|
|
bootstrap(AppComponent)
|
|
.catch(err => console.error(err));
|
|
|