@southsystem/hello
v0.1.2
Published
Our first module! It's so nice
Downloads
3
Readme
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>