为什么我收到此javascript错误?

时间:2016-11-15 20:12:29

标签: javascript node.js reactjs redux react-redux

我没有接近完成,但当我尝试npm开始这个项目时,我收到错误:

 Unexpected token, expected ;

  2 |
  3 |
> 4 | const App = fucntion() {
    |                        ^
  5 |   return <div>HI!</div>;
  6 | }
  7 |

这是index.js的完整文件:

import React from 'react';


const App = fucntion() {
  return <div>HI!</div>;
}



//shove into dom (page)
React.render(App);

1 个答案:

答案 0 :(得分:5)

你拼错了功能。 fucntion