Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Last active February 1, 2018 06:45
Show Gist options
  • Save buildmotion/51ff86a1388388294a5d13e46a2cecf6 to your computer and use it in GitHub Desktop.
Save buildmotion/51ff86a1388388294a5d13e46a2cecf6 to your computer and use it in GitHub Desktop.
MarkdownEditorModule
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