import { Button, Text } from "@saleor/macaw-ui/next"; import { ButtonsBox } from "../ui/buttons-box"; import { Modal } from "../ui/modal"; import { AddConnectionForm, AddConnectionFormID, AddConnectionFormSchema, } from "./add-connection-form"; const defaultValues: AddConnectionFormSchema = { channelSlug: "", providerId: "" }; export const AddConnectionModal = (props: { onSubmit(values: AddConnectionFormSchema): void; onClose(): void; }) => ( Connect channel with Provider Once connected, operations on product variants on this channel will be sent to selected CMS platform. );