14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
---
|
|
import type { RichTextLinebreakNode } from "src/shared/payload/rich-text";
|
|
import type { RichTextContext } from "src/utils/richText";
|
|
|
|
interface Props {
|
|
node: RichTextLinebreakNode;
|
|
context: RichTextContext;
|
|
}
|
|
---
|
|
|
|
{/* ------------------------------------------- HTML ------------------------------------------- */}
|
|
|
|
<br />
|