feat: add components in registry.json

A new file called registry.json has been created in the public react package. This file maps each component to its specific TypeScript file, acting as a repository for components like Button, Checkbox, Dialog, Input and others.
This commit is contained in:
p-sw 2024-06-06 19:27:18 +09:00
parent 550e942162
commit 426297796e

View File

@ -0,0 +1,16 @@
{
"base": "https://raw.githubusercontent.com/p-sw/ui/main/packages/react/components/{componentName}",
"components": {
"button": "Button.tsx",
"checkbox": "Checkbox.tsx",
"dialog": "Dialog.tsx",
"drawer": "Drawer.tsx",
"Input": "Input.tsx",
"Label": "Label.tsx",
"popover": "Popover.tsx",
"switch": "Switch.tsx",
"tabs": "Tabs.tsx",
"toast": "Toast.tsx",
"tooltip": "Tooltip.tsx"
}
}