forked from Gitlink/forgeplus-react
11 lines
334 B
JavaScript
11 lines
334 B
JavaScript
import React from 'react'
|
|
import TPMMDEditor from '../modules/tpm/challengesnew/TPMMDEditor'
|
|
|
|
export default () => {
|
|
function onMdContentChangeHandler(value) {
|
|
console.log(value, '--------------')
|
|
}
|
|
return (
|
|
<TPMMDEditor mdID='demo-id' noStorage={false} showNullButton={true} onChange={onMdContentChangeHandler} />
|
|
)
|
|
} |