0.0.8 • Published 7 years ago
demolibag v0.0.8
#demolibag
This angular component is created for making forms. For now one component is added in this library.
<dm-demo></dm-demo>How to use ?
Include our demolibag in app.module.ts.
import { DemoModule } from 'demolibag';
 
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    DemoModule //<-- add the module in imports
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }Add the component where the form is needed in your application.