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