'use client' import React from 'react' import { Button, Col, Row } from 'antd' import { Text } from '@/components/Typography/Text' export interface IProps { isReloading: boolean close: () => void reload: () => void } const empty = () => ({ title: 'Select Product Type', content: ( <> No Products Found You have no products in your Shopify Store. To add products to your Komi profile, you need to add them to your Shopify store first. You can click reload once your products are added to refresh this page. ), footer: ( ) }) export default empty