UNPKG

ngx-eagle

Version:

UI component infrastructure and Design components for mobile and desktop Angular web applications.

11 lines (9 loc) 343 B
import { NgModule } from '@angular/core'; import { RowDirective } from './row/row.directive'; import { ColDirective } from './col/col.directive'; import { CommonModule } from '@angular/common'; @NgModule({ imports: [CommonModule, RowDirective, ColDirective], exports: [RowDirective, ColDirective], }) export class GridModule {}