mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-18 01:00:38 +01:00
add userprefs to frontend
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { MatFormFieldModule } from '@angular/material/form-field';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { PrefOptionComponent } from './pref-option.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
MatFormFieldModule,
|
||||
MatInputModule,
|
||||
MatSlideToggleModule,
|
||||
],
|
||||
declarations: [PrefOptionComponent],
|
||||
exports: [PrefOptionComponent],
|
||||
})
|
||||
export class PrefOptionModule {}
|
||||
Reference in New Issue
Block a user