I’m trying to find a react datepicker component that’ll work with my semantic-ui based form.
<div className="ui form">
<!-- jQuery style -->
<div className="field">
<input type="text" name="datepicker"/>
</div>
<!--OR react-datepicker -->
<DatePicker/>
</div>
I’m using react-datepicker but the styling seems to conflict with semantic-ui. I was also looking at a semantic-ui styled datepicker but read that jQuery style plugins may change the DOM and upset react.
Looking for a easy way to get a datepicker that works within a semantic-ui form with react.