Created
June 30, 2022 04:07
-
-
Save NathanWalker/f61f2928badb0874dc46672f7a14cc42 to your computer and use it in GitHub Desktop.
Angular web bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; | |
import { AppModule } from "./app/app.module"; | |
// locate the app-root and bootstrap the component in it's place | |
platformBrowserDynamic() | |
.bootstrapModule(AppModule) | |
.catch((err) => console.error(err)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment