Files
plane/apps/web/ce/components/preferences/config.ts

8 lines
244 B
TypeScript
Raw Permalink Normal View History

import { StartOfWeekPreference } from "@/components/profile/start-of-week-preference";
import { ThemeSwitcher } from "./theme-switcher";
export const PREFERENCE_COMPONENTS = {
theme: ThemeSwitcher,
start_of_week: StartOfWeekPreference,
};