remove even more BackstageTheme usages

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-11-20 15:52:05 +01:00
parent dd3517df31
commit 1d7c989db2
100 changed files with 206 additions and 253 deletions
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
GraphQLVoyagerEndpoint,
introspectionQuery,
@@ -20,18 +21,17 @@ import {
import { useState } from 'react';
import { makeStyles, Tab, Tabs, Typography } from '@material-ui/core';
import React, { Suspense } from 'react';
import { BackstageTheme } from '@backstage/theme';
import { Content, ErrorPanel, Progress } from '@backstage/core-components';
import { Voyager } from 'graphql-voyager';
import useAsync from 'react-use/lib/useAsync';
const useStyles = makeStyles<BackstageTheme>(() => ({
const useStyles = makeStyles({
root: {
height: '100%',
display: 'flex',
flexFlow: 'column nowrap',
},
}));
});
type GraphQLVoyagerBrowserProps = {
endpoints: GraphQLVoyagerEndpoint[];