I try to create a new page from the code on the Shopify website and various tutorials but for some reason the cards never show up I am only left with text and nothing else I am unsure why this happens I have included the code if anyone else can help me I have tried many solutions to no avail I am highly confused
import {Card, Text} from '@shopify/polaris';
import React from 'react';
function CardExample() {
return (
<Card>
<Text as="h2" variant="bodyMd">
Content inside a card
</Text>
</Card>
);
}