import React from 'react'; import { Link } from 'react-router'; import { Collapse } from '../../../'; import * as utils from '../utils'; export default class Demo extends React.Component { constructor(props) { super(props); this.state = { activeKey: '', }; } handleChange(activeKey) { this.setState({ activeKey: this.state.activeKey === activeKey ? '' : activeKey }); } render() { const { id, meta, intro, preview, style, src, highlightedCode, highlightedStyle, expand, pathname } = this.props; const introChildren = intro.map(utils.objectToComponent.bind(null, pathname)); return (
{ meta.iframe === 'true' ?