import cx from 'classnames';
import './style.scss';
export function Selector({display, selected}) {
const displayValue = String(display);
return (
<>
{Array(display).fill(null).map((val, i) =>
)}
>
)
}
export function Row({children}) {
return (
{children}
)
}
export default function ({label, selected, help}) {
return (
{label && (
{label}
)}
{help && (
{help}
)}
{selected === '1' ? (
) : selected === '2' ? (
) : selected === '3' ? (
):
}
)
}