pswui/packages/react/public/registry.json
p-sw 426297796e 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.
2024-06-06 19:27:18 +09:00

16 lines
432 B
JSON

{
"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"
}
}