import { useGlobal } from '@/lib/global' import { ALL_THEME } from '@/themes' import React from 'react' import { Draggable } from './Draggable' /** * * @returns 主题切换 */ export function ThemeSwitch() { const { theme, changeTheme } = useGlobal() const onSelectChange = (e) => { changeTheme(e.target.value) } return (<>
{/*
{theme}
*/}
) }