I cannot run this [better-react-mathjax](https://www.npmjs.com/package/better-react-mathjax) lib from qwik, but works from simple jsx

My non-worked code as below:

  1. mathJax.tsx
import { qwikify$ } from "@builder.io/qwik-react";
import { Button } from "@mui/material";
import React from "react";
import { MathJaxContext, MathJax } from "better-react-mathjax";
//import pkg from 'better-react-mathjax';
//const {MathJaxContext, MathJax} = pkg;

export const MUIButton = qwikify$(Button);   // MUI lib. is working

export const QwikMathJaxContext = qwikify$(MathJaxContext);
export const QwikMathJax = qwikify$(MathJax);
  1. YourReactjs.jsx
import { MUIButton } from "~/integrations/react/mathJax";
import { QwikMathJaxContext, QwikMathJax } from "~/integrations/react/mathJax";

function YourReactjs() {

  const title = "title1.5";
  const config = {
    loader: { load: ["input/asciimath"] }
  };   

  return (
      <div>
        {/* This is a comment */}
        <h1>{title}</h1>
        <p>This is a testing jsx component</p>
        <MUIButton variant="text">Abc</MUIButton>
        <QwikMathJaxContext>
              <h2>Basic MathJax example with Latex</h2>
              <QwikMathJax>{"\\(\\frac{10}{4x} \\approx 2^{12}\\)"}</QwikMathJax>
        </QwikMathJaxContext>          

        <QwikMathJaxContext config={config}>
          <h2>Basic MathJax example with Latex</h2>
          <QwikMathJax>{"`frac(20)(4x) approx 2^(12)`"}</QwikMathJax>
        </QwikMathJaxContext>          
      </div>
  )
}
export default YourReactjs

frac(20)(4x) approx 2^(12)” – It cannot show Math symbol.

My working simple jsx code as below:

import { MathJaxContext, MathJax } from "better-react-mathjax";
function Test({ data, setPage}) {   // Refer to for _Section.jsx -> <Component /> what para. available
  return (
    <div>       
      <MathJaxContext>
            <h2>Basic MathJax example with Latex</h2>
            <MathJax>{"\\(\\frac{10}{4x} \\approx 2^{12}\\)"}</MathJax>
      </MathJaxContext>          
      
    </div>
  )
}
export default Test

See anyone have some hints to for import a npm lib. in qwik.

Hey @chungyan5
Thank you for reaching out to the Builder.io forum with your question about Qwik! Unfortunately, this forum is only intended for questions about the use of the Builder.io Visual Editor and its related plans and pricing.

However, Our Open source development team would love to help you take advantage of Qwik and Partytown to boost your site performance scores further and provide more value to your implementation with Builder.

To reach out to the Partytown and Qwik open source project teams, please head over to our Discord and join the discussion there. For the best results, we’d recommend you make a copy of your implementation of Partytown and place it in a Stackblitz project for review, then share it with the #general-partytown channel.

I hope you find the information above helpful and please don’t hesitate to reach out to us if you need any further assistance.