25 lines
298 B
JavaScript
25 lines
298 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
|
/*#__PURE__*/
|
|
_jsx("p", { ...props,
|
|
children: "text"
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("div", { ...props,
|
|
children: contents
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("img", {
|
|
alt: "",
|
|
src,
|
|
title
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("blockquote", {
|
|
cite,
|
|
children: items
|
|
});
|