diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 20:54:01 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 20:54:38 +0100 |
commit | 9ddcb4b09215f942cb7889f9756d426ad3c90253 (patch) | |
tree | e547e20530a8c713881eb29059e5647db6e91cca /webui/src/Content.tsx | |
parent | e5f52401b2a839881fedef5a446f0ed21d2d34c2 (diff) | |
download | git-bug-9ddcb4b09215f942cb7889f9756d426ad3c90253.tar.gz |
webui: force import order
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'; |