I want to use polaris components like card , banner etc. in my app but it is not a react app so how can i use them without using react.
You can include the Polaris CSS in your html from “unpkg.com/@shopify/polaris@12/build/esm/styles.css” The Polaris docs website has sample codes for both react and html for each component; you can use the html samples. https://polaris.shopify.com/components
I’m using Vue and trying the html version of Polaris. You can use the CDN:
https://www.jsdelivr.com/package/npm/@shopify/polaris
Or you can install with npm install @Shopify_77 /polaris and include the css with:
import ‘@shopify/polaris/build/esm/styles.css’;
