contact-list
v1.0.4
Published
Bootstrap 4 / Angular based list of contacts angular component
Readme
contact-list
Bootstrap 4 / Angular based list of contacts angular component.
Installation
npm install contact-list - install package
Usage
import {ContactListModule} from 'contact-list';
@NgModule({
imports: [
ContactListModule
]
})
export class AppModule {
}And use in template:
<app-contact-list></app-contact-list>Or in routing:
const routes: Routes = [
{path: '', component: ContactListComponent}
];As a result you should see the page with contacts list
