// @hash v2-45C15B016DCBCB6734979C1E8D2BE4D9 // Automatically generated by ReactJS.NET. Do not edit, your changes will be overridden. // Version: 1.5.1 (build 6e6e092) // Generated at: 2/3/2021 10:23:18 AM /////////////////////////////////////////////////////////////////////////////// var PersonaSepultadaComponent = React.createClass({displayName: "PersonaSepultadaComponent", getInitialState: function() { return {data: this.props.data}; }, setNewData: function(newData){ this.setState({data: newData}); }, render: function() { return React.createElement("table", {className: "table table-striped"}, React.createElement("thead", null, React.createElement("tr", null, React.createElement("th", null, "Cementerio"), React.createElement("th", null, "Nombre"), React.createElement("th", null, "Fecha"), React.createElement("th", null, "UbicaciĆ³n") ) ), React.createElement("tbody", null, this.state.data.map(function(row) { return ( React.createElement("tr", null, React.createElement("td", null, row.cementerio), React.createElement("td", null, row.nombreMov), React.createElement("td", null, row.fechaMov), React.createElement("td", null, row.ubicacion) )); }) ) ); } });