@@ -28,36 +28,34 @@ export const Mobile: Story = {
2828
2929function Story ( ) {
3030 return (
31- < div className = "min-h-screen bg-background py-4 text-foreground" >
32- < div className = "container flex max-w-[1000px] flex-col gap-8 lg:p-10" >
33- < BadgeContainer label = "Base" >
34- < DangerSettingCard
35- title = "This is a title"
36- description = "This is a description"
37- buttonLabel = "Some Action"
38- buttonOnClick = { ( ) => { } }
39- isPending = { false }
40- confirmationDialog = { {
41- title : "This is confirmation title" ,
42- description : "This is confirmation description" ,
43- } }
44- />
45- </ BadgeContainer >
31+ < div className = "container flex max-w-[1000px] flex-col gap-8 lg:p-10" >
32+ < BadgeContainer label = "Base" >
33+ < DangerSettingCard
34+ title = "This is a title"
35+ description = "This is a description"
36+ buttonLabel = "Some Action"
37+ buttonOnClick = { ( ) => { } }
38+ isPending = { false }
39+ confirmationDialog = { {
40+ title : "This is confirmation title" ,
41+ description : "This is confirmation description" ,
42+ } }
43+ />
44+ </ BadgeContainer >
4645
47- < BadgeContainer label = "Loading" >
48- < DangerSettingCard
49- title = "This is a title"
50- description = "This is a description"
51- buttonLabel = "Some Action"
52- buttonOnClick = { ( ) => { } }
53- isPending = { true }
54- confirmationDialog = { {
55- title : "This is confirmation title" ,
56- description : "This is confirmation description" ,
57- } }
58- />
59- </ BadgeContainer >
60- </ div >
46+ < BadgeContainer label = "Loading" >
47+ < DangerSettingCard
48+ title = "This is a title"
49+ description = "This is a description"
50+ buttonLabel = "Some Action"
51+ buttonOnClick = { ( ) => { } }
52+ isPending = { true }
53+ confirmationDialog = { {
54+ title : "This is confirmation title" ,
55+ description : "This is confirmation description" ,
56+ } }
57+ />
58+ </ BadgeContainer >
6159 </ div >
6260 ) ;
6361}
0 commit comments