mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 02:49:18 +08:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
/*jshint ignore:start */
|
|
var CodeBox = React.createClass({
|
|
render: function() {
|
|
return <pre><code>{this.props.code}</code></pre>;
|
|
}
|
|
});
|