Skip to content

Commit

Permalink
fix(ui component): work ui bol editor component
Browse files Browse the repository at this point in the history
working ui for bol form editor component (should be split further in subcomponents)
  • Loading branch information
minicast committed Oct 26, 2015
1 parent caaade1 commit 5ef0240
Show file tree
Hide file tree
Showing 3 changed files with 394 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/CheckboxWithLabel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// var React = require('react/addons');
var React = require('react');
var BigComplicatedComponent = require('./BigComplicatedComponent.js');
// var FormulaEditor = require('./FormulaEditor.js');
var FormulaEditor = require('./FormulaEditor.js');

var CheckboxWithLabel = React.createClass({
getInitialState: function() {
Expand All @@ -22,10 +22,10 @@ var CheckboxWithLabel = React.createClass({
{this.state.isChecked ? this.props.labelOn : this.props.labelOff}
<BigComplicatedComponent />
</label>
<FormulaEditor name="Editor"/>
</div>
);
)
}
});
// <FormulaEditor name="Editor"/>

module.exports = CheckboxWithLabel;

0 comments on commit 5ef0240

Please sign in to comment.