#how to import a npm package which not support SSR?

2 messages · Page 1 of 1 (latest)

arctic linden
#

I've tried use dynamic import import() in useEffect, like

// app.js
import {useEffect} from 'react'
function MyButton() {
  const [Comp, setComp] = useState();
  useEffect(() => {
    //  setComp(lazy(import("./test")))
    import("./test").then((mod) => {
      setComp(mod.default);
    });
  }, []);
  return Comp ? <Comp /> : null;
}

// test.js

import { useMemo } from "react";

export default () => {
  const title = useMemo(()=>'123',[])
  return <div>{213}</div>;
};

but if the importee use react hooks internaly, the application will crash

because can't use hooks inside of useEffect

cyan tigerBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)