diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2022-02-16 10:32:20 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2022-02-16 10:32:20 +0100 |
commit | bce4d095e16fb33d181b29aa1d3476037c0c873a (patch) | |
tree | 5906465bec4fec179597cd707a710bad08583cd8 /webui/src/components/Content/index.tsx | |
parent | ce50269639988e39fe4e27cc8c309a9d5c75c958 (diff) | |
download | git-bug-bce4d095e16fb33d181b29aa1d3476037c0c873a.tar.gz |
webui: replace React imports
Diffstat (limited to 'webui/src/components/Content/index.tsx')
-rw-r--r-- | webui/src/components/Content/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webui/src/components/Content/index.tsx b/webui/src/components/Content/index.tsx index ccb412c1..9bf9ff7a 100644 --- a/webui/src/components/Content/index.tsx +++ b/webui/src/components/Content/index.tsx @@ -1,4 +1,5 @@ -import React, { createElement, Fragment, useEffect, useState } from 'react'; +import { createElement, Fragment, useEffect, useState } from 'react'; +import * as React from 'react'; import rehypeReact from 'rehype-react'; import gemoji from 'remark-gemoji'; import html from 'remark-html'; |