@vertisanpro/flowbite-react
Version:
Non-Official React components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 446 B
JavaScript
import React from 'react';
import { ThemeClientInit } from './client';
import { ThemeModeInit } from './mode';
import { ThemeServerInit } from './server';
export function ThemeInit({ mode, theme }) {
return (React.createElement(React.Fragment, null,
React.createElement(ThemeModeInit, { mode: mode }),
React.createElement(ThemeServerInit, { theme: theme }),
React.createElement(ThemeClientInit, { theme: theme })));
}