diff --git a/packages/frontend/src/pages/components/index.tsx b/packages/frontend/src/pages/components/index.tsx index 8c23f341..4d56aa61 100644 --- a/packages/frontend/src/pages/components/index.tsx +++ b/packages/frontend/src/pages/components/index.tsx @@ -1,6 +1,7 @@ -import { Button, ButtonOrLinkProps } from 'components/shared/Button'; -import { PlusIcon } from 'components/shared/CustomIcon'; import React from 'react'; +import { Button, ButtonOrLinkProps } from 'components/shared/Button'; +import { Checkbox } from 'components/shared/Checkbox'; +import { PlusIcon } from 'components/shared/CustomIcon'; const Page = () => { return ( @@ -69,6 +70,35 @@ const Page = () => { ))} + +
+ +
+

Checkbox

+
+ {Array.from({ length: 5 }).map((_, index) => ( + + ))} +
+
+ {Array.from({ length: 2 }).map((_, index) => ( + + ))} +
+
);