Skip to content

Commit

Permalink
refactor(showmore): ♻️ update showmore imports & exports
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed Dec 29, 2021
1 parent 644dd46 commit 80218b9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export * from "./progress";
export * from "./radio";
export * from "./radio-group";
export * from "./select";
export * from "./show-more";
export * from "./slider";
export * from "./spinner";
export * from "./switch";
Expand Down
2 changes: 2 additions & 0 deletions src/show-more/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ export * from "./__keys";
export * from "./ShowMore";
export * from "./ShowMoreButton";
export * from "./ShowMoreContent";
export * from "./ShowMoreProps";
export * from "./ShowMoreState";
2 changes: 1 addition & 1 deletion src/show-more/stories/ShowMoreHorizontal.component.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from "react";

import { ShowMore, ShowMoreProps } from "../ShowMore";
import { ShowMore, ShowMoreProps } from "../../index";

export const ShowMoreHorizontal: React.FC<ShowMoreProps> = props => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/show-more/stories/ShowMoreVertical.component.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from "react";

import { ShowMore, ShowMoreProps } from "../ShowMore";
import { ShowMore, ShowMoreProps } from "../../index";

export const ShowMoreVertical: React.FC<ShowMoreProps> = props => {
return (
Expand Down

0 comments on commit 80218b9

Please sign in to comment.