Skip to content

Commit

Permalink
chore: group checkbox to forms category
Browse files Browse the repository at this point in the history
  • Loading branch information
zuramai committed Nov 8, 2023
1 parent fcb837e commit d7b8e54
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
17 changes: 17 additions & 0 deletions packages/forms/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "@bootwind/button",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^18.2.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.14"
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import { Meta } from '@storybook/react';
import Checkbox, { CheckboxProps } from '../src/index';
import Checkbox, { CheckboxProps } from '../src/checkbox/index';

export default {
title: 'Components/Checkbox',
title: 'Forms/Checkbox',
component: Checkbox,
argTypes: {
isRounded: { control: 'boolean' },
Expand Down
4 changes: 4 additions & 0 deletions packages/forms/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": ["../../tsconfig.json"],
"include": ["src"]
}

0 comments on commit d7b8e54

Please sign in to comment.