0.1.2 • Published 6 years ago

@southsystem/hello v0.1.2

Weekly downloads
-
License
-
Repository
-
Last release
6 years ago

Hello South System

Our first module! It's so nice

npm i -S @southsystem/hello
// src/app.module.ts
import { HelloModule } from '@southsystem/hello';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    HelloModule // <-- here
  ],
  providers: [],
  bootstrap: [AppComponent]
})
<!-- src/app.component.html -->
<sst-hello></sst-hello>