diff --git a/packages/propel/src/components/dropdown/index.tsx b/packages/propel/src/components/dropdown/index.tsx
index 6a8386d6..e23a7907 100644
--- a/packages/propel/src/components/dropdown/index.tsx
+++ b/packages/propel/src/components/dropdown/index.tsx
@@ -8,14 +8,16 @@ import { CheckboxVisual } from "../checkbox/index";
* The dropdown menu root — a Base UI `Menu.Root`. Holds open state and wires the
* trigger to the content. Compose it with `DropdownTrigger` + `DropdownContent`:
*
- *
- * Open
- *
- *
- *
- *
- *
- *
+ * ```tsx
+ *
+ * Open
+ *
+ *
+ *
+ *
+ *
+ *
+ * ```
*/
export const Dropdown = Menu.Root;
export type DropdownProps = React.ComponentProps;
diff --git a/packages/propel/src/components/tabs/index.tsx b/packages/propel/src/components/tabs/index.tsx
index 52abd4e8..95967230 100644
--- a/packages/propel/src/components/tabs/index.tsx
+++ b/packages/propel/src/components/tabs/index.tsx
@@ -38,14 +38,16 @@ export type TabsProps = Omit<
* Root of a tab set. Groups a `TabsList` of `Tab`s with their `TabsPanel`s and
* tracks which tab is active. Build the compound API from its parts:
*
- *
- *
- * Overview
- * Activity
- *
- * …
- * …
- *
+ * ```tsx
+ *
+ *
+ * Overview
+ * Activity
+ *
+ * …
+ * …
+ *
+ * ```
*/
export function Tabs({ variant, ...props }: TabsProps) {
return (