import React from 'react'; import ConfirmPageContainerWarning from '.'; export default { title: 'Components/UI/ConfirmPageContainerWarning', // title should follow the folder structure location of the component. Don't use spaces. id: __filename, argTypes: { warning: { control: 'text', }, }, args: { warning: 'This is a warning', }, }; export const DefaultStory = (args) => ; DefaultStory.storyName = 'Default';