var showJSON = function(data, _type, _id){
React.render(<Modal show={data} _type={_type} _id={_id}/>, document.getElementById('modal'));
};
var Column = React.createClass({
render: function(){
return <th id={this.props._item}>{this.props._item}</th>;
}
});