Skip to content

Commit

Permalink
refactor(webapp): import material component directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Nov 28, 2022
1 parent c4e7c18 commit 389d2c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/ChipList/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import PropTypes from 'prop-types'
import { Chip } from '@mui/material'
import Chip from '@mui/material/Chip'
import { makeStyles } from '@mui/styles'

import styles from './styles'
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/Loader/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { makeStyles } from '@mui/styles'
import { CircularProgress } from '@mui/material'
import CircularProgress from '@mui/material/CircularProgress'

import styles from './styles'

Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/NodeCard/SupportedAPIs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { makeStyles } from '@mui/styles'
import { Button } from '@mui/material'
import Button from '@mui/material/Button'
import axios from 'axios'

import ChipList from '../ChipList'
Expand Down

0 comments on commit 389d2c0

Please sign in to comment.