Last active
February 1, 2018 06:45
-
-
Save buildmotion/51ff86a1388388294a5d13e46a2cecf6 to your computer and use it in GitHub Desktop.
MarkdownEditorModule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import { EditorComponent } from './editor/editor.component'; | |
@NgModule({ | |
imports: [ | |
CommonModule | |
], | |
declarations: [EditorComponent], | |
exports: [ | |
EditorComponent | |
] | |
}) | |
export class MarkdownEditorModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment