0
エラーが発生しましたParsing error: Unexpected token ..
eslintこのスニペットです。それのどこが悪いんだい?Eslint解析エラー:予期しないトークン
const Public = ({ loggingIn, authenticated, component, ...rest }) => (
<Route {...rest} render={(props) => {
if (loggingIn) return <div></div>
return !authenticated
? (React.createElement(component, { ...props, loggingIn, authenticated }))
: (<Redirect to="/" />);
}} />
)
私の推測では、スプレッド/レストプロパティプロポーザルを処理するためにeslintを設定していないと思います。 http://eslint.org/docs/user-guide/configuring#specifying-parser-options –