无法导入 css 个文件 (react.js)
Cannot import css files (react.js)
当我尝试从组件导入 css 个文件时,出现错误。
Failed to compile.
./src/components/HeaderTemplate.js
Module not found: Can't resolve './styles/HeaderTemplate.css' in '/workspace/test/myapp/src/components'
我觉得路径有问题,但不知道怎么改,所以才问。
导入时要上一级:
import styles from '../styles/HeaderTemplate.css'
当我尝试从组件导入 css 个文件时,出现错误。
Failed to compile.
./src/components/HeaderTemplate.js
Module not found: Can't resolve './styles/HeaderTemplate.css' in '/workspace/test/myapp/src/components'
我觉得路径有问题,但不知道怎么改,所以才问。
导入时要上一级:
import styles from '../styles/HeaderTemplate.css'