We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c039a1 commit 6516f86Copy full SHA for 6516f86
1 file changed
src/PrismicRichText.tsx
@@ -1,11 +1,5 @@
1
-import {
2
- cloneElement,
3
- type ComponentType,
4
- type FC,
5
- Fragment,
6
- isValidElement,
7
- type ReactNode,
8
-} from "react";
+import { type LinkProps, PrismicLink } from "./PrismicLink.js";
+import { devMsg } from "./lib/devMsg.js";
9
import {
10
isFilled,
11
type LinkResolverFunction,
@@ -20,10 +14,14 @@ import {
20
14
type RichTextMapSerializer,
21
15
} from "@prismicio/client/richtext";
22
16
import { DEV } from "esm-env";
23
-
24
-import { devMsg } from "./lib/devMsg.js";
25
26
-import { type LinkProps, PrismicLink } from "./PrismicLink.js";
17
+import {
18
+ cloneElement,
19
+ type ComponentType,
+ type FC,
+ Fragment,
+ isValidElement,
+ type ReactNode,
+} from "react";
27
28
/**
29
* A function mapping rich text block types to React Components. It is used to
0 commit comments