Files
angular-challenges/apps/angular/styling/src/main.ts
2023-10-18 14:08:16 +02:00

5 lines
193 B
TypeScript

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