Skip to content

Commit b0c9f2e

Browse files
committed
fix nit
1 parent db7326d commit b0c9f2e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

fern/products/docs/pages/component-library/default-components/accordion-groups.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Accordion Groups allow you to organize content into collapsible sections, making
1111

1212
```jsx
1313
<AccordionGroup>
14-
<Accordion title="Section 1" defaultOpen={true>
14+
<Accordion title="Section 1" defaultOpen={true}>
1515
Content for section 1, expanded by default
1616
</Accordion>
1717
<Accordion title="Section 2">
@@ -37,8 +37,8 @@ Accordion Groups allow you to organize content into collapsible sections, making
3737
<Tabs>
3838
<Tab title="Example">
3939
<AccordionGroup>
40-
<Accordion title="Simple text content">
41-
This is a basic example with text content.
40+
<Accordion title="Simple text content" defaultOpen={true}>
41+
This is a basic example with text content. It's open by default when the page loads.
4242
</Accordion>
4343
<Accordion title="Text content with multimedia">
4444
You can embed images, videos, and other media within accordions for rich interactive content.
@@ -68,8 +68,8 @@ Accordion Groups allow you to organize content into collapsible sections, making
6868
<CodeBlock>
6969
````jsx
7070
<AccordionGroup>
71-
<Accordion title="Simple text content">
72-
This is a basic example with text content.
71+
<Accordion title="Simple text content" defaultOpen={true}>
72+
This is a basic example with text content. It's open by default when the page loads.
7373
</Accordion>
7474
<Accordion title="Text content with multimedia">
7575
You can embed images, videos, and other media within accordions for rich interactive content.

0 commit comments

Comments
 (0)