mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
It includes sass compilation, and building the bazel package distribution. PR Close #18733
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import {HelloWorldModule} from './hello-world/hello-world.module';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
@NgModule({
|
|
imports: [BrowserModule, HelloWorldModule]
|
|
})
|
|
export class AppModule {}
|