# Tabs Component > An MDX-compatible Tabs component This React component renders tabbed content. ## Usage - Use the `` tag in your markdown file to begin a tabbed content section. - Use the `` tag with a `heading` prop to separate your markdown ### Important A line must be skipped between the `` and your markdown (for both above and below said markdown). [This is a limitation of MDX also pointed out by the Docusaurus folks 🔗 ](https://v2.docusaurus.io/docs/markdown-features/#multi-language-support-code-blocks) ### Example ```mdx ### Content ### Content ``` ### Component Props `` can be provided any arbitrary `children` so long as the `heading` prop is present the React or HTML tag used to wrap markdown, that said, we provide the `` component to separate your tab content without rendering extra, unnecessary markup. This works: ```mdx ### Content .... ``` This _does not_ work: ```mdx ### Content .... ```