My current setup involves using Material UI v14.4 with React, and I have encountered an issue with the DatePicker component not displaying the dates correctly as shown in the attached screenshot. Strangely, there are no visible error messages either. Any suggestions on what steps to take to resolve this issue?
In response to a request for code sharing, here is the code snippet related to the problem. Please note that this pertains to a 3rd party component which may complicate matters:
import React, {Component} from 'react';
import DatePicker from 'material-ui/lib/date-picker/date-picker';
export default class DatePage extends Component {
render() {
return (
<div>
<DatePicker
floatingLabelText="Submission Start:"
/>
</div>
)
}
}
Any help or insights would be greatly appreciated!