8 lines
341 B
TypeScript
8 lines
341 B
TypeScript
// This is a minimal ivy app that is meant to mimic the bazel equivalent
|
|
// in `packages/core/test/bundling/hello_world`, and should be kept similar.
|
|
|
|
import { ɵrenderComponent as renderComponent } from '@angular/core';
|
|
import { AppComponent } from './app/app.component';
|
|
import './environments/environment';
|
|
renderComponent(AppComponent);
|