UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

16 lines (13 loc) 513 B
import { jsxs, Fragment, jsx } from 'react/jsx-runtime'; import { ThemeClientInit } from './client.mjs'; import { ThemeModeInit } from './mode.mjs'; import { ThemeServerInit } from './server.mjs'; function ThemeInit({ mode, theme }) { return /* @__PURE__ */ jsxs(Fragment, { children: [ /* @__PURE__ */ jsx(ThemeModeInit, { mode }), /* @__PURE__ */ jsx(ThemeServerInit, { theme }), /* @__PURE__ */ jsx(ThemeClientInit, { theme }) ] }); } export { ThemeInit }; //# sourceMappingURL=index.mjs.map