1
0
Fork 0
freesewing/sites/shared/components/workbench/menus/ui-settings/values.mjs

9 lines
267 B
JavaScript
Raw Normal View History

2023-05-31 17:56:58 +02:00
import { Difficulty } from 'shared/components/designs/difficulty.mjs'
import { ListValue } from '../shared/values.mjs'
2023-05-31 17:56:58 +02:00
2023-06-02 13:07:43 -05:00
export const values = {
renderer: ListValue,
inspect: ListValue,
control: ({ control }) => <Difficulty score={control} color="primary" />,
}