Picsur/frontend/src/app/components/partial-sys-pref/partial-sys-pref.module.ts
2023-03-15 15:41:23 +01:00

15 lines
423 B
TypeScript

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { PrefOptionModule } from '../pref-option/pref-option.module';
import { PartialSysPrefComponent } from './partial-sys-pref.component';
@NgModule({
imports: [
CommonModule,
PrefOptionModule
],
declarations: [PartialSysPrefComponent],
exports: [PartialSysPrefComponent],
})
export class PartialSysPrefModule {}