import { ThemeProvider } from '@affine/core/components/theme-provider'; import { configureDesktopApiModule } from '@affine/core/modules/desktop-api'; import { configureI18nModule, I18nProvider } from '@affine/core/modules/i18n'; import { configureElectronStateStorageImpls, configureStorageModule, } from '@affine/core/modules/storage'; import { configureEssentialThemeModule } from '@affine/core/modules/theme'; import { appInfo } from '@affine/electron-api'; import { Framework, FrameworkRoot } from '@toeverything/infra'; import * as styles from './app.css'; import { Recording } from './recording'; const framework = new Framework(); configureI18nModule(framework); configureEssentialThemeModule(framework); configureStorageModule(framework); configureElectronStateStorageImpls(framework); configureDesktopApiModule(framework); const frameworkProvider = framework.provider(); const mode = appInfo?.windowName as 'notification' | 'recording'; export function App() { return (
{mode === 'recording' && }
); }