Add basic API connection to Grocy
Add initial table to show entries
This commit is contained in:
26
src/app/tailwindui/tailwindui.module.ts
Normal file
26
src/app/tailwindui/tailwindui.module.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import {CommonModule, NgOptimizedImage} from '@angular/common';
|
||||
import {PlusButtonComponent} from './plus-button/plus-button.component';
|
||||
import {TableRowImageComponent} from './table-row-image/table-row-image.component';
|
||||
import {TableRowImageDialogComponent} from './table-row-image/table-row-image-dialog/table-row-image-dialog.component';
|
||||
import {MatDialogModule} from '@angular/material/dialog';
|
||||
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
PlusButtonComponent,
|
||||
TableRowImageComponent,
|
||||
TableRowImageDialogComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
NgOptimizedImage,
|
||||
MatDialogModule
|
||||
],
|
||||
exports: [
|
||||
PlusButtonComponent,
|
||||
TableRowImageComponent
|
||||
]
|
||||
})
|
||||
export class TailwinduiModule { }
|
||||
Reference in New Issue
Block a user