我正在使用一个名为babel-plugin-transform-react-class-to-function的插件,用于将react类转换为功能组件。它是将给定的输入转换成转译的Babel代码,但我希望在给定插件的github的自述文件中指定的原始纯代码。我该怎么做>
例:给定输入enter image description here
提供的输出。enter image description here
需输出
import PropTypes from 'prop-types';
import { Component } from 'react';
export const HelloWorld = ({ className }) => <div className={className}>Hello world!</div>;
HelloWorld.propTypes = {
className: PropTypes.string,
};
1条答案
按热度按时间huus2vyu1#
你需要一个额外的Babel插件:
例如
babel.config.json
:于:
index.jsx
:编译命令:
输出:
软件包版本: