From b6d32e980af7d9d26aed9aba03f9cabef699585e Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 6 Jun 2024 23:55:27 +0900 Subject: [PATCH] fix(react): change shared file extension in registry.json This commit updates the extension of the 'shared' file from .ts to .tsx in the registry.json file. The update ensures that the 'shared' file correctly points to a TypeScript JSX file within the React package. --- packages/react/public/registry.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 5cf3d3c..c39f461 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -1,6 +1,6 @@ { "base": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/components/{componentName}", - "shared": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/shared.ts", + "shared": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/shared.tsx", "components": { "button": "Button.tsx", "checkbox": "Checkbox.tsx",