babel plugin hyperscript to jsx:此插件将react hyperscript转换为JSX。 拟用作codemod 源码
babel-plugin-hyperscript-to-jsx(codmod用法) 从hyperscript迁移到JSX是一个非常复杂的codemod。 之前的代码: import h from "react-hyperscript" ; import hx from "shit" const StatelessComponent = props => h ( "h1" ) ; const StatelessWithReturn = props => { return h ( ".class" ) ; } ; function HyperscriptAsRegularFunction
用户评论