import React from 'react'; import { render, Text, useExtensionApi, } from '@shopify/checkout-ui-extensions-react'; render('Checkout::Dynamic::Render', () => ( )); function Extension() { const {shop} = useExtensionApi(); return Shop name: {shop.name}; }