1.0.0-preview.0 • Published 5 years ago

@anjuna/angular v1.0.0-preview.0

Weekly downloads
6
License
-
Repository
-
Last release
5 years ago

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 {}