1
0
Fork 0

lint(gui): fix a few name-only imports

This commit is contained in:
Sean Sube 2023-01-07 08:33:27 -06:00
parent 17e62fb8e3
commit 090ad43845
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import { IconButton, Stack } from '@mui/material';
import { Casino } from '@mui/icons-material'; import { Casino } from '@mui/icons-material';
import * as React from 'react'; import * as React from 'react';
import { NumericField } from './NumericField'; import { NumericField } from './NumericField.js';
export interface ImageParams { export interface ImageParams {
cfg: number; cfg: number;

View File

@ -2,7 +2,7 @@ import { Grid } from '@mui/material';
import { useState } from 'react'; import { useState } from 'react';
import * as React from 'react'; import * as React from 'react';
import { UseMutationResult } from 'react-query'; import { UseMutationResult } from 'react-query';
import { LoadingCard } from './LoadingCard'; import { LoadingCard } from './LoadingCard.js';
export interface MutationHistoryChildProps<T> { export interface MutationHistoryChildProps<T> {
value: T; value: T;