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

@ -6,7 +6,7 @@
import { useApplicationState } from '../../hooks/common/use-application-state'
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 { useSendToRenderer } from '../render-page/window-post-message-communicator/hooks/use-send-to-renderer'
import {
CommunicationMessageType,
@ -37,7 +37,7 @@ export const SlideShowPageContent: React.FC = () => {
return (
<div className={'vh-100 vw-100'}>
<RenderIframe
<RendererIframe
frameClasses={'h-100 w-100'}
markdownContentLines={markdownContentLines}
rendererType={RendererType.SLIDESHOW}