9 lines
341 B
JavaScript
9 lines
341 B
JavaScript
// __SDEFILE__ - This file is a dependency for the stand-alone environment
|
|
import { Difficulty } from 'shared/components/designs/difficulty.mjs'
|
|
import { ListValue } from '../shared/values.mjs'
|
|
|
|
export const values = {
|
|
control: ({ control }) => <Difficulty score={control} color="primary" />,
|
|
kiosk: ListValue,
|
|
renderer: ListValue,
|
|
}
|