0.0.7 • Published 2 years ago
ngx-as-components v0.0.7
FDB Alertspace Components
Starter library to create reusable Angular components for FDB Alertspace projects.
Installation
It is recommended to use npm
or yarn
to install.
$ npm i ngx-as-components
Usage
Import the component modules you want to use in your app.module.ts
file and feature modules.
// app.module.ts
import { ButtonComponent } from 'ngx-as-components';
@NgModule({
imports: [ButtonComponent],
})
export class AppModule {}