diff --git a/vanilla/templates/docs/components/accordion/react/index.md b/vanilla/templates/docs/components/accordion/react/index.md
index 0c936cd..f4a9d8c 100644
--- a/vanilla/templates/docs/components/accordion/react/index.md
+++ b/vanilla/templates/docs/components/accordion/react/index.md
@@ -4,4 +4,43 @@ context:
title: Accordion | React
---
-# 🚧 WIP 🚧
+The sidebar accordion, used in listing pages or as navigation, can hold multiple navigation items or to be used as a filter for content.
+
+# Props
+
+| name | DESCRIPTION | DEFAULT |
+| -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
+| className | Optional classes applied to the parent element. `string` | |
+| expanded | An optional value to set the expanded section. The value must match a section key. This value will only set the expanded section on first render if externallyControlled is not set to true. `string` | |
+| externallyControlled | Whether the expanded section will be controlled via external state. `boolean` | |
+| onExpandedChange | Optional function that is called when the expanded section is changed. The function is provided the section title or null. `(id: string, title: string) => void` | |
+| sections\* | An array of sections and content. `Section[]` | |
+| titleElement | Optional string describing heading element that should be used for the section titles. `"h2"` `"h3"` `"h4"` `"h5"` `"h6"` | |
+
+## Default
+
+
+
+## External state
+
+The expanded accordion section can be controlled by external state.
+
+
+
+## Headings
+
+`titleElement` prop can be used to define heading element for section titles.
+
+