UNPKG

@deepkit/desktop-ui

Version:

Library for desktop UI widgets in Angular 10+

32 lines (28 loc) 732 B
/* * Deepkit Framework * Copyright (C) 2021 Deepkit UG, Marc J. Schmidt * * This program is free software: you can redistribute it and/or modify * it under the terms of the MIT License. * * You should have received a copy of the MIT License along with this program. */ import { NgModule } from '@angular/core'; import { ListComponent, ListItemComponent, ListTitleComponent } from './list.component'; export * from './list.component'; @NgModule({ imports: [], exports: [ ListComponent, ListItemComponent, ListTitleComponent, ], declarations: [ ListComponent, ListItemComponent, ListTitleComponent, ], providers: [], }) export class DuiListModule { }