@anjuna/angular
v1.0.0-preview.0
Published
The @anjuna/angular module is a set of Angular-specific wrappers and helpers to plug the main component library into Angular's APIs and patterns.
Downloads
3
Keywords
Readme
Core
The @anjuna/angular module is a set of Angular-specific wrappers and helpers to plug the main component library into Angular's APIs and patterns.
Getting Started
npm install @anjuna/angular
Once installed, you can import the module into any Angular module you need it.
import {NgModule, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
import {AnjunaModule} from '@anjuna/angular';
@NgModule({
imports: [
// Other imports
AnjunaModule
],
declarations: [
// application components
],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
})
export class MyModule {}