diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2020-02-13 00:53:29 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-13 00:53:29 +0100 |
commit | 8b85780d76ad45675582f4478eedb026b7ac25e1 (patch) | |
tree | b6ffdc651259ec08ca608cb01acdf1dababccb55 /webui/src/Content.tsx | |
parent | 680dd91c0c0200bd4948173df0b601e16f511e6e (diff) | |
download | git-bug-8b85780d76ad45675582f4478eedb026b7ac25e1.tar.gz |
webui: start reorganizing the component structure
Diffstat (limited to 'webui/src/Content.tsx')
-rw-r--r-- | webui/src/Content.tsx | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/webui/src/Content.tsx b/webui/src/Content.tsx deleted file mode 100644 index 3a7af2f8..00000000 --- a/webui/src/Content.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react'; -import html from 'remark-html'; -import parse from 'remark-parse'; -import remark2react from 'remark-react'; -import unified from 'unified'; - -import ImageTag from './tag/ImageTag'; -import PreTag from './tag/PreTag'; - -type Props = { markdown: string }; -const Content: React.FC<Props> = ({ markdown }: Props) => { - const processor = unified() - .use(parse) - .use(html) - .use(remark2react, { - remarkReactComponents: { - img: ImageTag, - pre: PreTag, - }, - }); - - const contents: React.ReactNode = processor.processSync(markdown).contents; - return <>{contents}</>; -}; - -export default Content; |