我试图在React中使用Flow和ESlint。我有一个基本的Container组件,它需要一个儿童道具。这是组件代码:
// @flow
import * as React from 'react';
import styled from 'react-emotion';
const Wrapper = styled.div`
background: hsl(181, 54%, 44%);
color: hsl(221, 51%, 34%);
max-width: 1200px;
margin: 0 auto;
`;
export default function Container({ children: React.Node }) {
return <Wrapper>{children}</Wrapper>;
}
eslint解析器在流类型注释React.Node上阻塞,给出了这个错误:
我在这里遗漏了什么吗?我希望能够在利用ESlint的同时使用Flow类型。