Skip to content

Commit

Permalink
refactor(storybook): ♻️ group commons stories
Browse files Browse the repository at this point in the history
  • Loading branch information
navin-moorthy committed Oct 16, 2020
1 parent d1336d6 commit 262bfb5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/meter/__examples__/stories/CircularMeter.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from "../../../progress/stories/storybook-progress-utils";

export default {
title: "Meter Circular",
title: "Meter/Circular",
} as Meta;

const CircularMeter = createCircularExample({
Expand Down
2 changes: 1 addition & 1 deletion src/meter/__examples__/stories/LinearMeter.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IStyledMeter, StyledMeter as Meter } from "../index";

export default {
component: Meter,
title: "Meter Linear",
title: "Meter/Linear",
} as Meta;

const Base: Story<IStyledMeter> = args => <Meter {...args} />;
Expand Down
2 changes: 1 addition & 1 deletion src/progress/stories/CircularProgress.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from "./storybook-progress-utils";

export default {
title: "Progress Circular",
title: "Progress/Circular",
} as Meta;

const CircularProgress = createCircularExample({
Expand Down
2 changes: 1 addition & 1 deletion src/progress/stories/LinearProgress.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from "./storybook-progress-utils";

export default {
title: "Progress Linear",
title: "Progress/Linear",
} as Meta;

const examples = createLinearExamples({
Expand Down
2 changes: 1 addition & 1 deletion src/toast/stories/AnimatedToast.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Demo, { getTransform } from "./Demo";
import { ToastProvider, TToastWrapper } from "../index";

export default {
title: "Toast Animated",
title: "Toast/Animated",
} as Meta;

const CSSTransitionAnimationWrapper: TToastWrapper = ({
Expand Down
2 changes: 1 addition & 1 deletion src/toast/stories/BasicToast.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Demo from "./Demo";
import { ToastProvider } from "../index";

export default {
title: "Toast Base",
title: "Toast/Base",
} as Meta;

export const Default: React.FC = () => {
Expand Down

0 comments on commit 262bfb5

Please sign in to comment.