/** @jsxImportSource @emotion/react */ import '/styles/styles.css' import RadixThemesColorModeProvider from "/components/reflex/radix_themes_color_mode_provider.js" import { Theme as RadixThemesTheme } from "@radix-ui/themes" import "@radix-ui/themes/styles.css" import theme from "/utils/theme.js" import { Fragment } from "react" import { EventLoopProvider, StateProvider, defaultColorMode } from "/utils/context.js"; import { ThemeProvider } from 'next-themes' function AppWrap({children}) { return ( {children} ) } export default function MyApp({ Component, pageProps }) { return ( ); }