【发布时间】:2021-12-06 23:05:12
【问题描述】:
import React from 'react'
import styled from "styled-components";
function Home() {
return (
<Container>
home
</Container>
)
}
export default Home
错误来了
src\components\Home.js Line 6:10: 'Container' is not defined react/jsx-no-undef
【问题讨论】:
-
欢迎来到 SO。当涉及到asking a good question 和这个question checklist 时,您可能会发现阅读网站help section 很有用。
-
错误是正确的。
Container未定义。 -
如何解决它
-
您是否创建了
Container组件?如果您已将其导入Home。 -
请告诉我导入容器的命令是什么
标签: javascript reactjs ecmascript-2016