I am trying to implement this date picker https://www.npmjs.com/package/react-16-bootstrap-date-picker I am able to implement this but my date picker is not look like same as show in example .I think my css file is not loaded why ?
here is my code https://codesandbox.io/s/r1ox70mrq
class App extends Component {
render() {
return (
<div>
ddd
<DatePicker id="example-datepicker" />
</div>
);
}
}