React Flow ESlint:解析错误意外令牌,预期','

时间:2018-05-25 19:34:20

标签: reactjs eslint

我试图在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上阻塞,给出了这个错误:

View error

我在这里遗漏了什么吗?我希望能够在利用ESlint的同时使用Flow类型。

0 个答案:

没有答案