diff --git a/web/app/components/datasets/documents/detail/completed/common/dot.tsx b/web/app/components/datasets/documents/detail/completed/common/dot.tsx new file mode 100644 index 0000000000..c791b93e2d --- /dev/null +++ b/web/app/components/datasets/documents/detail/completed/common/dot.tsx @@ -0,0 +1,11 @@ +import React from 'react' + +const Dot = () => { + return ( +
ยท
+ ) +} + +Dot.displayName = 'Dot' + +export default React.memo(Dot) diff --git a/web/app/components/datasets/documents/detail/completed/common/tag.tsx b/web/app/components/datasets/documents/detail/completed/common/tag.tsx new file mode 100644 index 0000000000..9517d38f1e --- /dev/null +++ b/web/app/components/datasets/documents/detail/completed/common/tag.tsx @@ -0,0 +1,14 @@ +import React from 'react' + +const Tag = ({ text }: { text: string }) => { + return ( +
+ # + {text} +
+ ) +} + +Tag.displayName = 'Tag' + +export default React.memo(Tag)