-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
Reactjs uses jsx and jsx has what looks like html inside the javascript code so when the jsformat package autoformats it doesnt deal with the jsx properly.If its possible to ignore formatting within the return that would be great!!! Here is an example.
var DateFields = React.createClass({
render: function () {
return (
<div>
<input type="hidden" name={this.props.name} value={this.state.value}/>
</div>
);
}
});