blob: a60c75c07c9958ac8aa86a2f6bbedb5ea956cd2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"use client";
import { Zoom } from "prosody-ui";
import { NLP } from "sortug-ai";
type Props = { text: string; doc: NLP.Spacy.SpacyRes };
function ZoomText(props: Props) {
return (
<div>
<Zoom.FullText {...props} />
</div>
);
}
export default ZoomText;
|