import React from 'react';
import NavSate from './navState';
const LayoutSetting = ({ value, onChange }) => {
return (
{['sidemenu', 'topmenu'].map(layout => (
onChange && onChange(layout)}
key={layout}
style={{
width: 70,
height: 44,
textAlign: 'center',
margin: 8,
}}
>
))}
);
};
export default LayoutSetting;