Skip to content

Commit

Permalink
docs: update content
Browse files Browse the repository at this point in the history
  • Loading branch information
mrholek committed May 11, 2023
1 parent 713f57a commit 970cfda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/content/components/modal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const [visible, setVisible] = useState(false)
return (
<>
<CButton onClick={() => setVisible(!visible)}>Launch static backdrop modal</CButton>
<CModal visible={visible} onClose={() => setVisible(false)}>
<CModal backdrop="static" visible={visible} onClose={() => setVisible(false)}>
<CModalHeader>
<CModalTitle>Modal title</CModalTitle>
</CModalHeader>
Expand Down

0 comments on commit 970cfda

Please sign in to comment.