ngx-foundry-components
v1.1.1
Published
Starter library to create reusable Angular components for Foundry Interactive projects.
Downloads
3
Readme
Foundry Components
Starter library to create reusable Angular components for Foundry Interactive projects.
Installation
It is recommended to use @angular/cli
to install.
$ ng add ngx-foundry-components
More information about @angular/cli
can be found here.
You can also install ngx-foundry-components
with npm or yarn.
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-foundry-components';
@NgModule({
imports: [ButtonComponent],
})
export class AppModule {}