diff --git a/create/changelogs.mdx b/create/changelogs.mdx
index e48b722a4..2f0028e96 100644
--- a/create/changelogs.mdx
+++ b/create/changelogs.mdx
@@ -106,6 +106,29 @@ The RSS feed publishes entries when you add new `Update` components and when mod
RSS feed entries contain pure Markdown only. Components, code, and HTML elements are excluded. Use the `rss` property to provide alternative text descriptions for RSS subscribers when your updates include content that is excluded.
+#### Importing snippets with Update components
+
+You can import snippets containing `Update` components into your changelog pages. Updates from imported snippets are automatically included in the RSS feed:
+
+```mdx changelog.mdx
+---
+title: "Changelog"
+rss: true
+---
+
+import Updates from "/snippets/updates.mdx";
+
+
+```
+
+```mdx snippets/updates.mdx
+
+ Added support for dark mode across all pages.
+
+```
+
+This approach lets you organize your changelog updates in separate snippet files while maintaining RSS feed functionality.
+
```xml Example RSS feed