1
0
Fork 0

chore: Adapt sites to recent changes

This commit is contained in:
Joost De Cock 2022-06-17 12:02:09 +02:00
parent 147920daeb
commit 43ee0f1790
392 changed files with 1269 additions and 1190 deletions

View file

@ -0,0 +1,14 @@
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,
}