Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions fern/products/docs/pages/changelog/2025-11-09.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The new `<Files>` component creates visual file tree structures with expandable folders and nested files. Use it to show project structures, directory layouts, or any hierarchical file organization in your documentation.

<Files>
<Folder name="components" defaultOpen>
<Folder name="components" highlighted defaultOpen>
<File name="accordion.mdx" />
<File name="button.mdx" />
<File name="card.mdx" />
Expand All @@ -12,6 +12,8 @@ The new `<Files>` component creates visual file tree structures with expandable
<Folder name="assets">
<File name="styles.css" />
</Folder>
<File name="markdown.mdx" href="/learn/docs/writing-content/markdown" />
<File name="README.md" comment="Contribute to the docs"/>
<File name="markdown.mdx" href="/learn/docs/writing-content/markdown-basics" />
<File name="README.md" />
</Files>
Expand All @@ -20,7 +22,7 @@ The component consists of three parts: `<Files>` as the container, `<Folder>` fo

```jsx Markdown maxLines=10
<Files>
<Folder name="components" defaultOpen>
<Folder name="components" highlighted defaultOpen>
<File name="accordion.mdx" />
<File name="button.mdx" />
<File name="card.mdx" />
Expand All @@ -29,6 +31,8 @@ The component consists of three parts: `<Files>` as the container, `<Folder>` fo
<Folder name="assets">
<File name="styles.css" />
</Folder>
<File name="markdown.mdx" href="/learn/docs/writing-content/markdown" />
<File name="README.md" comment="Contribute to the docs"/>
<File name="markdown.mdx" href="/learn/docs/writing-content/markdown-basics" />
<File name="README.md" />
</Files>
Expand Down