Skip to content

Commit

Permalink
fix(pixels): udate all component index exports
Browse files Browse the repository at this point in the history
  • Loading branch information
toxsick committed Apr 15, 2024
1 parent a76f297 commit 17a6044
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 4 deletions.
3 changes: 1 addition & 2 deletions packages/pixels/src/Button/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ import type { ButtonProps } from './Button';

import Button from './Button';

export default Button;

export type { ButtonProps };
export default Button;
3 changes: 3 additions & 0 deletions packages/pixels/src/Card/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { CardProps } from './Card';

import Card from './Card';

export type { CardProps };
export default Card;
3 changes: 1 addition & 2 deletions packages/pixels/src/Json/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ import type { JsonProps } from './Json';

import Json from './Json';

export default Json;

export type { JsonProps };
export default Json;
3 changes: 3 additions & 0 deletions packages/pixels/src/Label/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { LabelProps } from './Label';

import Label from './Label';

export type { LabelProps };
export default Label;
3 changes: 3 additions & 0 deletions packages/pixels/src/Menu/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { MenuProps } from './Menu';

import Menu from './Menu';

export type { MenuProps };
export default Menu;
3 changes: 3 additions & 0 deletions packages/pixels/src/Modal/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { ModalProps } from './Modal';

import Modal from './Modal';

export type { ModalProps };
export default Modal;
3 changes: 3 additions & 0 deletions packages/pixels/src/Popover/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { PopoverProps } from './Popover';

import Popover from './Popover';

export type { PopoverProps };
export default Popover;
3 changes: 3 additions & 0 deletions packages/pixels/src/Tooltip/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import type { TooltipProps } from './Tooltip';

import Tooltip from './Tooltip';

export type { TooltipProps };
export default Tooltip;

0 comments on commit 17a6044

Please sign in to comment.