Add discussion link
All checks were successful
Build release image / build (push) Successful in 1m26s

This commit is contained in:
yehor
2025-10-07 21:05:49 +03:00
parent d6d3cd6d00
commit 756312021a
20 changed files with 90 additions and 122 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
// Import the original mapper
import MDXComponents from '@theme-original/MDXComponents';
//Import custom component
import BlogDiscussions from '@site/src/components/BlogDiscussions';
export default {
// Re-use the default mapping
...MDXComponents,
// Map the "<BlogDiscussions>" tag to our BlogDiscussions component
// `BlogDiscussions` will receive all props that were passed to `<BlogDiscussions>` in MDX
BlogDiscussions,
};