Importing an old ES5 module for use in a ReactJS component

后端 未结 3 1879
深忆病人
深忆病人 2021-01-15 00:24

I\'m trying to use an ES5 module in a new ReactJS application and I\'m struggling to understand how to correctly import that module, such that the main function within it ca

3条回答
  •  有刺的猬
    2021-01-15 01:01

    If you're using create-react-app, you should be able to import it like

    import 'air-datepicker/dist/css/datepicker.min.css';
    import 'air-datepicker';
    

    If you added your jQuery using

提交回复
热议问题