import React from 'react'; import { Link } from 'react-router'; import { Collapse } from '../../../'; import * as utils from '../utils'; import hljs from 'highlight.js'; export default class Demo extends React.Component { render() { const { id, preview, title, intro, code } = this.props; const introChildren = intro.map(utils.objectToComponent); const highlightedCode = hljs.highlight('javascript', code).value; return (
{ preview() }
{ title }
                  
                  
); } }