'use client'; import { flowbiteTheme as theme } from '../theme'; import { Flowbite } from 'flowbite-react'; import type { PropsWithChildren } from 'react'; function FlowbiteContext({ children }: PropsWithChildren) { return {children}; } export default FlowbiteContext;