developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

React/Storybook : Module not found: Error: Can't resolve '@chakra-ui/react' #185

Closed developerasun closed 2 years ago

developerasun commented 2 years ago

issue : yarn storybook command not working throwing error

in terminal,

module-not-found

developerasun commented 2 years ago

solution : visit official homepage and install below command.

$npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^5

and then fixed the import statement

// from 
import { Button } from '@chakra-ui/core'

// to 
import { Button } from '@chakra-ui/react'