Adam Beleko

Results 32 comments of Adam Beleko

I had the same problem. After extensive searching, I managed to find the project on npm. Here are all the useful links to get you started: https://bestofjs.org/projects/potion https://www.npmjs.com/package/number-picture Note: potion...

> I've got the same issue. I tried **npm install @types/react-gauge-chart** and it worked! Did not work for me

Decided to get a temporary fix. I have forked the repo and removed the css import from the module. Next JS users may install the module using: `yarn add git+https://github.com/BossBele/react-gauge-chart.git`...

@joeleduardo It was commented earlier.. Looks like the recent push was not efficient. It is fixed now

Not exactly Sir @joeleduardo but It is in the process. However, there is another workaround (using next-css) I am currently verifying. If it works, there won't be a need for...

@joeleduardo there is a workaround using [`next-css`](https://github.com/vercel/next-plugins/tree/master/packages/next-css) In next.config.js: ``` const withCSS = require("@zeit/next-css"); module.exports = withCSS(); ``` Then use [next dynamic import with no ssr](https://nextjs.org/docs/advanced-features/dynamic-import#with-no-ssr) to import GaugeChart: ```...