import React from 'react'; import './LayoutSwitcher.css'; const OPTIONS = [ { value: 'side', label: '侧边布局' }, { value: 'top', label: '顶部布局' }, { value: 'mixed', label: '混合布局' } ]; export default function LayoutSwitcher({ value = 'side', onChange }) { return (
{OPTIONS.map((o) => (
onChange && onChange(o.value)} >
{o.value !== 'side' &&
}
{o.value !== 'top' &&
}
{o.label}
))}
); }