1
0
Fork 0

cleanup after cherry-pick

This commit is contained in:
Enoch Riese 2023-06-02 13:07:43 -05:00
parent 1359daec67
commit 76b96242d3
7 changed files with 10 additions and 69 deletions

View file

@ -1,6 +1,8 @@
import { Difficulty } from 'shared/components/designs/difficulty.mjs'
import { ListValue } from '../shared/values.mjs'
export const RendererSettingValue = ListValue
export const InspectSettingValue = ListValue
export const ControlSettingValue = ({ control }) => <Difficulty score={control} color="primary" />
export const values = {
renderer: ListValue,
inspect: ListValue,
control: ({ control }) => <Difficulty score={control} color="primary" />,
}