私は現在、流星のアプリケーションを設定していると私はeslintとバベルを使用していますが、私は次のコードスニペットのために、次のエラーを取得:解析エラー:予期しないトークンのconst
const Navigation = props => (
const classes = props.classes;
return (
<div className={classes.root}>
</div>
)
);
エラー:
2:4 - Parsing error: Unexpected token const
私のeslint設定hereを再作成しました。 私.babelrc設定は以下の通りです:
{
"presets": ["env", "react"]
}