如何在 React 和 JSX 中导入名称中包含特殊字符的 JS 文件?
我可以
import { tomorrow} from 'react-syntax-highlighter/dist/esm/styles/hljs';
(该文件夹包含明天.js 和 tomrorrow-night.js)
但我不能:
import { tomorrow-night} from 'react-syntax-highlighter/dist/esm/styles/hljs';
我认为解构在这里不起作用,因为它是一个导入语句。