猿问

react 组件两种声明方式疑问

方式一:

import React from 'react';class GameView extends  React.Component{
}

export default GameView;

方式二:

import React from 'react';

const GameView = ({}) => {
}export default GameView;

第一种方式是es6的,我经常见,但是最近看别人代码,发现了第二种定义方式。
第二种导入了React库,却没使用,也定义成功了,怎么实现的?


慕侠2389804
浏览 1098回答 2
2回答
随时随地看视频慕课网APP
我要回答