'use client'; import React from 'react'; import type { MathJaXFormulaProps } from './MathJaX'; const MathJaXFormula = React.lazy(() => import('./MathJaX')); /** * Lazy component that loads MathJax and renders the formula. */ export function MathJaXLazy(props: MathJaXFormulaProps) { return ( ); }