1
0
Fork 0

chore: linter issues

This commit is contained in:
joostdecock 2023-02-05 19:58:25 +01:00
parent c894deb912
commit 86aa0f20da
34 changed files with 83 additions and 102 deletions

View file

@ -3,17 +3,17 @@ import { CountOption } from 'shared/components/workbench/inputs/design-option-co
import { ListOption } from 'shared/components/workbench/inputs/design-option-list.mjs'
import { Popout } from 'shared/components/popout.mjs'
export const Tmp = (props) => <p>not yet</p>
export const Tmp = () => <p>not yet</p>
export const inputs = {
pct: DesignOptionPctDeg,
count: CountOption,
deg: (props) => <DesignOptionPctDeg {...props} type="deg" />,
list: ListOption,
mm: () => (
Pct: DesignOptionPctDeg,
Count: CountOption,
Deg: (props) => <DesignOptionPctDeg {...props} type="deg" />,
List: ListOption,
Mm: () => (
<Popout fixme compact>
Mm options are deprecated. Please report this
</Popout>
),
constant: Tmp,
Constant: Tmp,
}