UNPKG

@euglena/cli

Version:

Command Line Interface to create and manage euglena projects as simple as possible

15 lines (12 loc) 423 B
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { Banner } from './banner/banner'; @NgModule({ declarations: [AppComponent, Banner], imports: [BrowserModule, AppRoutingModule], providers: [], bootstrap: [AppComponent], }) export class AppModule {}