Cengiz Gürtusgil
Results
1
comments of
Cengiz Gürtusgil
What helped for me was to create a helper like this ```ts const dynamicImport = async (packageName: string) => new Function(`return import('${packageName}')`)(); export default dynamicImport; ``` which I then used...