Files
ant-design/static/code.jsx
2015-05-12 17:29:08 +08:00

7 lines
144 B
JavaScript

/*jshint ignore:start */
var CodeBox = React.createClass({
render: function() {
return <pre><code>{this.props.code}</code></pre>;
}
});