feat: add playground hooks to make playground easier

This commit is contained in:
p-sw 2024-07-12 13:05:21 +09:00
parent f1b6e5336d
commit d7ecef09a0

View File

@ -20,6 +20,7 @@ export function usePgProps<T extends TEMPLATE>(
pre[propKey] = {
...propMeta,
onChange(value: string | boolean) {
console.log(`mutating ${componentName}/${propKey}`);
mutate((state) => {
state[componentName][propKey].value = value;
});