react的Fragment,下面两种写法有什么区别?
写法1:
import React, { Fragment } from 'react';
render() {
return (
<Fragment>
hello world
</Fragment>
);
}
写法2:
import React from 'react';
render() {
return (
<>
hello world
</>
);
}
下面的那种是上面的那种的快捷方式 https://reactjs.org/docs/reac...