我正在按照 Shopify 教程使用 React.js 和 Node 创建他们的基本应用程序。
import { Layout, Page, TextStyle } from '@shopify/polaris';
const Index = () => (
<Page>
<Layout>
<TextStyle variation="positive">
Sample app using React and Next.js
</TextStyle>
</Layout>
</Page>
);
export default Index;
我一引入 Page 组件,它就会抛出以下错误:错误:没有提供任何功能。
关于什么可能是错误的任何线索?