docs: add note for Windows installation, enable tabs support

This commit is contained in:
Pavel Sviderski
2025-05-28 11:14:27 +10:00
parent cfb4693286
commit b4bf1d17d0
2 changed files with 45 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
// Import the original mapper
import MDXComponents from '@theme-original/MDXComponents';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
export default {
// Re-use the default mapping
...MDXComponents,
// Global import the <Tabs> and <TabItem> components
Tabs,
TabItem,
};