2
0
Files
bot/apps/builder/src/features/blocks/bubbles/embed/components/EmbedBubbleContent.tsx
2022-11-15 15:14:38 +01:00

8 lines
279 B
TypeScript

import { Text } from '@chakra-ui/react'
import { EmbedBubbleBlock } from 'models'
export const EmbedBubbleContent = ({ block }: { block: EmbedBubbleBlock }) => {
if (!block.content?.url) return <Text color="gray.500">Click to edit...</Text>
return <Text>Show embed</Text>
}