我有一个使用create-react-app制作的ReactJS应用程序。其结构如下:
app
| - public
| - src
| - App.js
| - Index.js
| - componentA
| - componentB
| - CompB.js
| - componentC
带有另一个类似
的降价文件的本地文件夹files
| - A
| - A.md
| - B
| - B.md
,并且需要从app/componentB/CompB.js
内部使用require
模块加载markdown文件。 files
文件夹应该放在哪里?require
应该使用什么语法/路径?谢谢
SkippyElvis