30 lines
337 B
JavaScript
30 lines
337 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
|
/*#__PURE__*/
|
|
_jsx("p", {
|
|
prop: true,
|
|
prop: true,
|
|
children: "text"
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("p", {
|
|
prop,
|
|
prop,
|
|
children: "text"
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("p", {
|
|
prop: true,
|
|
prop,
|
|
children: "text"
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
_jsx("p", {
|
|
prop,
|
|
prop: true,
|
|
children: "text"
|
|
});
|