Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试DatePickerInput在引导模式中使用组件。
DatePickerInput
如官方网站所示,我期待与此类似的效果。
但是,在引导模式中,我得到了这个.
我想这是因为库试图在某个 z-index 处显示覆盖,而不知道输入本身已经在提升的组件中。
我应该如何解决这个问题?太感谢了!
@mrTurkay 的评论解决了我的问题,我没有导入库提供的 CSS 文件。添加
`import 'react-day-picker/lib/style.css';`
解决了这个问题。