diff options
Diffstat (limited to 'webui/src/Content.tsx')
-rw-r--r-- | webui/src/Content.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webui/src/Content.tsx b/webui/src/Content.tsx index 9683f478..889c9987 100644 --- a/webui/src/Content.tsx +++ b/webui/src/Content.tsx @@ -1,8 +1,9 @@ -import unified from 'unified'; -import parse from 'remark-parse'; +import { ReactNode } from 'react'; import html from 'remark-html'; +import parse from 'remark-parse'; import remark2react from 'remark-react'; -import { ReactNode } from 'react'; +import unified from 'unified'; + import ImageTag from './tag/ImageTag'; import PreTag from './tag/PreTag'; |