start moving everything to components

This commit is contained in:
Philipp Kühn
2018-10-21 15:50:10 +02:00
parent 287a2bc523
commit d5e25de018
30 changed files with 524 additions and 56 deletions

View File

@@ -0,0 +1,25 @@
import Extension from './extension'
export default class Mark extends Extension {
constructor(options = {}) {
super(options)
}
get type() {
return 'mark'
}
get view() {
return null
}
get schema() {
return null
}
command() {
return () => {}
}
}