release 5.3.2

This commit is contained in:
ceolter
2016-09-02 16:43:20 +01:00
parent 5a8da199c2
commit 68ba430896
18 changed files with 156 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
export default class SimpleCellRenderer extends React.Component {
render() {
var params = this.props.params;
// the class below does nothing, it's just for testing, so we can inspect the dom of
// the result and looking for it, to validate that this cellRenderer is actually getting used.
return (
<span className="simple-cell-renderer">{params.value}</span>
);
}
}
SimpleCellRenderer.propTypes = {
params: React.PropTypes.object
};