laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
46 lines (45 loc) • 1.23 kB
JavaScript
"use client";
import { blockquote as o } from "./blockquote.js";
import { hardBreak as r } from "./break.js";
import { code as m } from "./code.js";
import { definition as i } from "./definition.js";
import { emphasis as t } from "./emphasis.js";
import { heading as e } from "./heading.js";
import { html as p } from "./html.js";
import { image as f } from "./image.js";
import { imageReference as a } from "./image-reference.js";
import { inlineCode as n } from "./inline-code.js";
import { link as l } from "./link.js";
import { linkReference as c } from "./link-reference.js";
import { list as h } from "./list.js";
import { listItem as s } from "./list-item.js";
import { paragraph as d } from "./paragraph.js";
import { root as k } from "./root.js";
import { strong as g } from "./strong.js";
import { text as b } from "./text.js";
import { thematicBreak as u } from "./thematic-break.js";
const L = {
blockquote: o,
break: r,
code: m,
definition: i,
emphasis: t,
hardBreak: r,
heading: e,
html: p,
image: f,
imageReference: a,
inlineCode: n,
link: l,
linkReference: c,
list: h,
listItem: s,
paragraph: d,
root: k,
strong: g,
text: b,
thematicBreak: u
};
export {
L as handle
};