{this.state.node.content}
case 1:
return {this.state.node.content}
case 2:
return {this.state.node.content}
case 3:
return {this.state.node.content}
default:
return {this.state.node.content}
}
},
render: function () {
if (this.state.node.children.length) {
var children = this.state.node.children.map((id, i) =>
)
return
{this.header()}
{children}
}
var content = this.state.node.content
if (!content) return
if (this.state.node.type === 'image') {
return
}
if (this.state.node.type === 'ipython') {
content = '```\n' + content + '\n```'
}
return
},
})
module.exports = PaperItem