【发布时间】:2020-11-16 16:21:28
【问题描述】:
我尝试开发我的第一个 Shopify 模块,但是当我使用 React 时,我在商店的应用程序页面中出现此错误。
这里是我的 index.js
import {Page} from "@shopify/polaris";
import {RessourcePicker} from "@shopify/app-bridge-react";
class Index extends React.Component{
state = {open: false}
render() {
return (
<Page
title="Product selector"
primaryAction={{
content:'Select products',
onAction: () => this.setState({open:true})
}}
>
<RessourcePicker
ressourceType='Product'
open={this.state.open}
/>
</Page>
)
}
}
export default Index;
【问题讨论】:
标签: javascript reactjs react-native module shopify