import { Empty, Skeleton, Divider, Flex, Button } from 'antd' import { Conditional } from '@/components/Conditional' import { isNotEmpty } from '@/utils/commons' const HtmlPreview = (props) => { const { loading = false, value, onEdit, onCopied, onDelete } = props if (loading) { return } return (
} whenFalse={} /> ) } export default HtmlPreview