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.
This commit is contained in:
p-sw 2024-06-06 23:55:27 +09:00
parent d2ed474c9d
commit b6d32e980a

View File

@ -1,6 +1,6 @@
{ {
"base": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/components/{componentName}", "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": { "components": {
"button": "Button.tsx", "button": "Button.tsx",
"checkbox": "Checkbox.tsx", "checkbox": "Checkbox.tsx",