I'm following the Shopify tutorial to create their basic app using React.js and 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;
As soon as I introduce the Page component, it throws the following error: Error: No Features were provided.
Any clues as to what could be wrong?