我想从另一个文件中定义的JavaScript函数调用React类组件。这里的React Class组件具有JSX语法。可能吗 ?
这是我在Example.js文件中定义的React Class组件
class Example extends React.Component {
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
这是我在Normal.js文件中定义的普通JavaScript函数。从这个函数中,我想调用我的React类组件。怎么打?
function Calling() {
//From Here I wanted to call React Class component (Example)
}