Skip to content

Commit ab3348a

Browse files
committed
fix(stories): className
1 parent 757f523 commit ab3348a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.storybook/preview.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ addDecorator(story => (
1313
<CRow>
1414
<CCol lg="12" xs="12">
1515
<CCard lg="12" xs="12">
16-
<h1 class="ml-3">CoreUI</h1>
16+
<h1 className="ml-3">CoreUI</h1>
1717
</CCard>
1818
</CCol>
1919
{story()}
2020
</CRow>
2121
</CContainer>
2222
</>
23-
));
23+
));

stories/CWidgetBrand.stories.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ return <>
4040
leftHeader={leftHeader}
4141
leftFooter={leftFooter}
4242
>
43-
<p class="m-4">Some brand</p>
43+
<p className="m-4">Some brand</p>
4444
</CWidgetBrand>
4545
</CCardBody>
4646
</CCard>

stories/CWidgetDropdown.stories.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ return <>
4242
text={_text}
4343
>
4444
<CDropdown
45-
class="float-right"
45+
className="float-right"
4646
color="transparent p-0"
4747
placement="bottom-end"
4848
>

0 commit comments

Comments
 (0)