18 lines
551 B
TypeScript
18 lines
551 B
TypeScript
/**
|
|
* 매매 시그널 알림 — 그리드 배치 선택
|
|
*/
|
|
import GridLayoutPicker from '../common/GridLayoutPicker';
|
|
import type { TradeNotificationGridPresetId } from '../../utils/tradeNotificationGridPresets';
|
|
|
|
interface Props {
|
|
value: TradeNotificationGridPresetId;
|
|
onChange: (id: TradeNotificationGridPresetId) => void;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const TradeNotificationGridLayoutPicker: React.FC<Props> = props => (
|
|
<GridLayoutPicker variant="tnl" popoverAlign="right" {...props} />
|
|
);
|
|
|
|
export default TradeNotificationGridLayoutPicker;
|