作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 ESLint、Airbnb lint 和 Prettier 来控制代码样式。我在下面的 header.propTypes
标题中遇到错误。我看过 documentation但我不理解解决方案。这是一个 React 项目。
错误是:
Typo in declared prop type: title
我在这里做错了什么?
export default function Header(props) {
const { title } = props;
return (
<Helmet>
<title>{title}</title>
</Helmet>
);
}
Header.propTypes = {
title: PropTypes.title.isRequired
};
最佳答案
RHS 无效,PropTypes.title.isRequired
。您可能想要 PropTypes.string.isRequired
。
关于eslint - 如何在我的 React linter 中修复 "Typo in declared prop type: title"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54938145/
我是一名优秀的程序员,十分优秀!