mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-04 05:55:12 +08:00
19 lines
794 B
TypeScript
19 lines
794 B
TypeScript
/**
|
|
* @fileoverview Barrel file for all markdown block components.
|
|
* This allows for cleaner imports in other parts of the application.
|
|
*/
|
|
|
|
export { default as AudioBlock } from './audio-block'
|
|
export { default as CodeBlock } from './code-block'
|
|
export { default as Img } from './img'
|
|
export { default as Link } from './link'
|
|
export { default as Paragraph } from './paragraph'
|
|
export { default as PreCode } from './pre-code'
|
|
export { default as ScriptBlock } from './script-block'
|
|
export { default as VideoBlock } from './video-block'
|
|
|
|
// Assuming these are also standalone components in this directory intended for Markdown rendering
|
|
export { default as MarkdownButton } from './button'
|
|
export { default as MarkdownForm } from './form'
|
|
export { default as ThinkBlock } from './think-block'
|