大改动

This commit is contained in:
宇阳
2025-01-12 19:57:49 +08:00
parent 7f01194c61
commit 38f171d727
27 changed files with 245 additions and 234 deletions

View File

@@ -3,11 +3,11 @@ import { Segmented } from 'antd';
import SynthesisTheme from './components/SynthesisTheme';
import RecordTheme from './components/RecordTheme';
const ThemePage = () => {
export default () => {
const [current, setCurrent] = useState<string>("综合配置");
return (
<>
<div>
<Segmented<string>
size="large"
options={['综合配置', '说说配置']}
@@ -22,8 +22,6 @@ const ThemePage = () => {
{current === "说说配置" && (
<RecordTheme />
)}
</>
</div>
);
};
export default ThemePage;
};