UNPKG

@pepperi/components

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 10.0.1.

24 lines (19 loc) 653 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { MatCommonModule } from '@angular/material/core'; import { MatFormFieldModule } from '@angular/material/form-field'; import { PepperiModule } from '@pepperi/lib'; import { PepperiMenuComponent } from './menu.component'; @NgModule({ imports: [ CommonModule, // Material modules, MatCommonModule, MatFormFieldModule, // Pepperi modules PepperiModule, ], exports: [ PepperiMenuComponent ], declarations: [ PepperiMenuComponent ], }) export class PepperiMenuModule {}