feat: refactor rendering I
This commit is contained in:
13
frontend/src/components/nodes/render/views/index.ts
Normal file
13
frontend/src/components/nodes/render/views/index.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Output view components used by the Rendering node.
|
||||
* Which view is shown is determined by the source's outputType (image vs html);
|
||||
* the actual HTML structure lives here so it is not coupled to the Rendering node.
|
||||
*/
|
||||
|
||||
export { ImageOutputView } from './ImageOutputView'
|
||||
export { MarkdownOutputView } from './MarkdownOutputView'
|
||||
export { RawOutputView } from './RawOutputView'
|
||||
|
||||
export type { ImageOutputViewProps } from './ImageOutputView'
|
||||
export type { MarkdownOutputViewProps } from './MarkdownOutputView'
|
||||
export type { RawOutputViewProps } from './RawOutputView'
|
||||
Reference in New Issue
Block a user