laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
60 lines (59 loc) • 1.62 kB
JavaScript
"use client";
import { blockquote as r } from "./blockquote.js";
import { hardBreak as m } from "./break.js";
import { code as t } from "./code.js";
import { strikethrough as e } from "./delete.js";
import { emphasis as i } from "./emphasis.js";
import { footnoteReference as f } from "./footnote-reference.js";
import { heading as p } from "./heading.js";
import { html as n } from "./html.js";
import { imageReference as a } from "./image-reference.js";
import { image as l } from "./image.js";
import { inlineCode as c } from "./inline-code.js";
import { linkReference as d } from "./link-reference.js";
import { link as h } from "./link.js";
import { listItem as s } from "./list-item.js";
import { list as g } from "./list.js";
import { paragraph as k } from "./paragraph.js";
import { root as u } from "./root.js";
import { strong as b } from "./strong.js";
import { table as R } from "./table.js";
import { tableRow as x } from "./table-row.js";
import { tableCell as B } from "./table-cell.js";
import { text as C } from "./text.js";
import { thematicBreak as q } from "./thematic-break.js";
const V = {
blockquote: r,
break: m,
code: t,
delete: e,
emphasis: i,
footnoteReference: f,
heading: p,
html: n,
imageReference: a,
image: l,
inlineCode: c,
linkReference: d,
link: h,
listItem: s,
list: g,
paragraph: k,
// @ts-expect-error: root is different, but hard to type.
root: u,
strong: b,
table: R,
tableCell: B,
tableRow: x,
text: C,
thematicBreak: q,
toml: o,
yaml: o,
definition: o,
footnoteDefinition: o
};
function o() {
}
export {
V as handlers
};