const customStyles = {
zIndex: 100
};
class FormReport extends Component {
constructor(props) {
super(props);
}
render() {
return (
...
<div style={customStyles}>
<DatePicker style={customStyles}/>
</div>
...
)}