shelving
Version:
Toolkit for using data in JavaScript.
7 lines (6 loc) • 318 B
TypeScript
import type { ReactElement } from "react";
import type { OptionalChildProps } from "../util/props.js";
export interface ProseProps extends OptionalChildProps {
}
/** A section of longform text containing lots of `<p>` or `<ul>` style elements. */
export declare function Prose({ children }: ProseProps): ReactElement;