mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 18:55:19 -04:00
refactor: rename iframe-markdown-renderer to render-page-content
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
6f17b2f554
commit
d792fd3987
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|||
/**
|
||||
* Wraps the markdown rendering in an iframe.
|
||||
*/
|
||||
export const IframeMarkdownRenderer: React.FC = () => {
|
||||
export const RenderPageContent: React.FC = () => {
|
||||
const [markdownContentLines, setMarkdownContentLines] = useState<string[]>([])
|
||||
const [scrollState, setScrollState] = useState<ScrollState>({ firstLineInView: 1, scrolledPercentage: 0 })
|
||||
const [baseConfiguration, setBaseConfiguration] = useState<BaseConfiguration | undefined>(undefined)
|
Loading…
Add table
Add a link
Reference in a new issue