refactor: rename render-iframe to renderer-iframe

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-04-26 19:24:48 +02:00
parent aef0211092
commit 4d48aa613d
13 changed files with 21 additions and 21 deletions

View file

@ -5,7 +5,7 @@
*/
import { useTrimmedNoteMarkdownContentWithoutFrontmatter } from '../../hooks/common/use-trimmed-note-markdown-content-without-frontmatter'
import { setRendererStatus } from '../../redux/renderer-status/methods'
import { RenderIframe } from '../common/render-iframe/render-iframe'
import { RendererIframe } from '../common/renderer-iframe/renderer-iframe'
import { RendererType } from '../render-page/window-post-message-communicator/rendering-message'
import { DocumentInfobar } from './document-infobar'
import React, { Fragment } from 'react'
@ -23,7 +23,7 @@ export const DocumentReadOnlyPageContent: React.FC = () => {
return (
<Fragment>
<DocumentInfobar />
<RenderIframe
<RendererIframe
frameClasses={'flex-fill h-100 w-100'}
markdownContentLines={markdownContentLines}
rendererType={RendererType.DOCUMENT}