import type { MDXComponents } from "mdx/types";
import type { ComponentPropsWithoutRef } from "react";
import { BeforeAfterEditor, BookPartsNav, BREAKFramework, Callout, ChainErrorDemo, ChainExample, ChainFlowDemo, Checklist, CodeEditor, Collapsible, Compare, ContentPipelineDemo, ContextPlayground, ContextWindowDemo, CostCalculatorDemo, CRISPEFramework, DiffView, EmbeddingsDemo, FallbackDemo, FewShotDemo, FillInTheBlank, IconCheck, IconClipboard, IconLightbulb, IconLock, IconSettings, IconStar, IconTarget, IconUser, IconX, InfoGrid, InteractiveChecklist, IterativeRefinementDemo, JailbreakDemo, JsonYamlDemo, LLMCapabilitiesDemo, NavButton, NavFooter, PrinciplesSummary, PromptAnalyzer, PromptBreakdown, PromptBuilder, PromptChallenge, PromptDebugger, Quiz, RTFFramework, SpecificitySpectrum, StructuredOutputDemo, SummarizationDemo, TemperatureDemo, TextToImageDemo, TextToVideoDemo, TokenizerDemo, TokenPredictionDemo, TryIt, ValidationDemo, VersionDiff } from "@/components/book/interactive";
import { PromiCharacter, PromiWithMessage, Panel, StoryScene, PromptVsMistake, MagicWords, DragDropPrompt, LevelComplete, Section, PromptParts, ExampleMatcher, PromptDoctor, StepByStep, PromptLab, WordPredictor } from "@/components/kids/elements";
export function useMDXComponents(components: MDXComponents): MDXComponents {
return {
...components,
table: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"table"> & { ref?: unknown }) => (
),
thead: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"thead"> & { ref?: unknown }) => (
),
tbody: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"tbody"> & { ref?: unknown }) => (
),
th: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"th"> & { ref?: unknown }) => (
|
),
td: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"td"> & { ref?: unknown }) => (
|
),
tr: ({ ref: _ref, ...props }: ComponentPropsWithoutRef<"tr"> & { ref?: unknown }) => (
),
BeforeAfterEditor,
BookPartsNav,
BREAKFramework,
Callout,
ChainErrorDemo,
ChainExample,
ChainFlowDemo,
Checklist,
CodeEditor,
Collapsible,
Compare,
ContentPipelineDemo,
ContextPlayground,
ContextWindowDemo,
CostCalculatorDemo,
CRISPEFramework,
DiffView,
EmbeddingsDemo,
FallbackDemo,
FewShotDemo,
FillInTheBlank,
IconCheck,
IconClipboard,
IconLightbulb,
IconLock,
IconSettings,
IconStar,
IconTarget,
IconUser,
IconX,
InfoGrid,
InteractiveChecklist,
IterativeRefinementDemo,
JailbreakDemo,
JsonYamlDemo,
LLMCapabilitiesDemo,
NavButton,
NavFooter,
PrinciplesSummary,
PromptAnalyzer,
PromptBreakdown,
PromptBuilder,
PromptChallenge,
PromptDebugger,
Quiz,
RTFFramework,
SpecificitySpectrum,
StructuredOutputDemo,
SummarizationDemo,
TemperatureDemo,
TextToImageDemo,
TextToVideoDemo,
TokenizerDemo,
TokenPredictionDemo,
TryIt,
ValidationDemo,
VersionDiff,
// Kids components
PromiCharacter,
PromiWithMessage,
Panel,
StoryScene,
PromptVsMistake,
MagicWords,
DragDropPrompt,
LevelComplete,
Section,
PromptParts,
ExampleMatcher,
PromptDoctor,
StepByStep,
PromptLab,
WordPredictor,
};
}