reactui
Version:
A components library for ReactJS. This is part of the Gearz project
20 lines (16 loc) • 394 B
JavaScript
;
var React = require("react");
var gearzMixin = require("../../gearz.mixin");
var StackPanel = React.createClass({
displayName: "StackPanel",
mixins: [gearzMixin],
propTypes: {},
render: function render() {
return React.createElement(
"div",
null,
this.props.children
);
}
});
module.exports = StackPanel;