reactjscodesandbox

How add material-ui/Button in codesandbox


I make https://codesandbox.io/s/laughing-golick-p4etx?file=/src/components/LinkBtn.js

if I add material-ui and @svelte-material-ui/button but its not help.

ModuleNotFoundError
Could not find module in path: 'material-ui/Button' relative to '/src/components/LinkBtn.js'

What for codesandbox Dependencies need add?


Solution

  • The package is added under @material-ui/core

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

    import Button from '@material-ui/core/Button'