14 lines
519 B
JavaScript
14 lines
519 B
JavaScript
import PctDegOption from 'shared/components/workbench/inputs/design-option-pct-deg'
|
|
import CountOption from 'shared/components/workbench/inputs/design-option-count'
|
|
import ListOption from 'shared/components/workbench/inputs/design-option-list'
|
|
|
|
export const Tmp = props => <p>not yet</p>
|
|
|
|
export const inputs = {
|
|
pct: PctDegOption,
|
|
count: CountOption,
|
|
deg: props => (<PctDegOption {...props} type='deg' />),
|
|
list: ListOption,
|
|
mm: (<p>Mm options are not supported. Please report this.</p>),
|
|
constant: Tmp,
|
|
}
|