mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* refactor app wizards completely * display new and new options in config Co-authored-by: Matt Hill <matthill@Matt-M1.start9.dev>
19 lines
511 B
TypeScript
19 lines
511 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { NotesComponent } from './notes.component'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { RouterModule } from '@angular/router'
|
|
import { MarkdownPipeModule } from '@start9labs/shared'
|
|
|
|
@NgModule({
|
|
declarations: [NotesComponent],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild([]),
|
|
MarkdownPipeModule,
|
|
],
|
|
exports: [NotesComponent],
|
|
})
|
|
export class NotesComponentModule {}
|