Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 58x 44x 58x 58x | import type { ComponentStory } from "@storybook/react";
import React from "react";
import { Button } from "stories";
 
export default { component: Button };
 
export const ShouldMount: ComponentStory<typeof Button> = (args) => (
  <Button {...args} />
);
ShouldMount.args = { label: "No cypress tests here" };
// story-code @end @include-start
ShouldMount.parameters = {
  docs: {
    description: {
      story:
        "Simply check if the component renders okay without extra cypress assertions",
    },
  },
};
  |