2023-05-31 17:56:58 +02:00
|
|
|
import { Difficulty } from 'shared/components/designs/difficulty.mjs'
|
2023-06-02 12:13:49 -05:00
|
|
|
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" />,
|
|
|
|
}
|