Files
angular-challenges/apps/styling/src/main.ts

5 lines
193 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { PageComponent } from './app/page.component';
bootstrapApplication(PageComponent).catch((err) => console.error(err));