refactor: update material ui imports
Signed-off-by: Timothy Deakin <cftad@protonmail.com>
This commit is contained in:
@@ -23,7 +23,9 @@ import {
|
||||
TableColumn,
|
||||
} from '@backstage/core-components';
|
||||
import { useApi } from '@backstage/core-plugin-api';
|
||||
import { Box, Theme, Typography, makeStyles } from '@material-ui/core';
|
||||
import Box from '@material-ui/core/Box';
|
||||
import Typography from '@material-ui/core/Typography';
|
||||
import { Theme, makeStyles } from '@material-ui/core/styles';
|
||||
|
||||
import { UnprocessedEntity } from '../types';
|
||||
import { EntityDialog } from './EntityDialog';
|
||||
|
||||
@@ -21,7 +21,8 @@ import {
|
||||
TableColumn,
|
||||
Table,
|
||||
} from '@backstage/core-components';
|
||||
import { Theme, Typography, makeStyles } from '@material-ui/core';
|
||||
import Typography from '@material-ui/core/Typography';
|
||||
import { Theme, makeStyles } from '@material-ui/core/styles';
|
||||
|
||||
import { UnprocessedEntity } from '../types';
|
||||
|
||||
|
||||
@@ -16,8 +16,11 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { Page, Header, Content } from '@backstage/core-components';
|
||||
import { Tab, makeStyles } from '@material-ui/core';
|
||||
import { TabContext, TabList, TabPanel } from '@material-ui/lab';
|
||||
import Tab from '@material-ui/core/Tab';
|
||||
import { makeStyles } from '@material-ui/core/styles';
|
||||
import TabContext from '@material-ui/lab/TabContext';
|
||||
import TabList from '@material-ui/lab/TabList';
|
||||
import TabPanel from '@material-ui/lab/TabPanel';
|
||||
|
||||
import { FailedEntities } from './FailedEntities';
|
||||
import { PendingEntities } from './PendingEntities';
|
||||
|
||||
Reference in New Issue
Block a user