+
+
+ );
+});
+```
+
+---
+
+### With Batched Custom Renderers
+
+
+
+If you are using batched custom renderers, or your would like to add markdown to initial conversation messages,
+you can use the `
` primitive.
+
+```jsx
+import {memo} from 'react';
+import {ResponseRenderer, Markdown} from '@nlux/react';
+
+const responseRenderer: ResponseRenderer = memo((props) => {
+ const {content} = props;
+ return (
+
+ {content}
+
+ );
+});
+```
diff --git a/docs/docs/reference/002-ui/005-themes.mdx b/docs/docs/reference/002-ui/006-themes.mdx
similarity index 100%
rename from docs/docs/reference/002-ui/005-themes.mdx
rename to docs/docs/reference/002-ui/006-themes.mdx
diff --git a/docs/docs/reference/002-ui/006-errors.mdx b/docs/docs/reference/002-ui/007-errors.mdx
similarity index 100%
rename from docs/docs/reference/002-ui/006-errors.mdx
rename to docs/docs/reference/002-ui/007-errors.mdx