From d7ecef09a062bae15cfb627b68baff227c777cab Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 13:05:21 +0900 Subject: [PATCH] feat: add playground hooks to make playground easier --- src/components/PgHooks.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/PgHooks.tsx b/src/components/PgHooks.tsx index 906cc99..85e1a35 100644 --- a/src/components/PgHooks.tsx +++ b/src/components/PgHooks.tsx @@ -20,6 +20,7 @@ export function usePgProps( pre[propKey] = { ...propMeta, onChange(value: string | boolean) { + console.log(`mutating ${componentName}/${propKey}`); mutate((state) => { state[componentName][propKey].value = value; });