import React from "react" import { OverlayProvider } from "../overlay/context"; import { PopupProvider } from "../popup/context"; import { Theme, ThemeStyle } from "../../theme/theme"; import { LightTheme } from "../../theme/themes"; interface Props { children: React.ReactNode | React.ReactElement | JSX.Element; theme?: Theme; } const KloktunUI: React.FC = ({ children, theme = LightTheme }) => { return <> {children} } export default KloktunUI;