add a couple missing imports
(not entirely sure why it works without them but may be complicating an upgrade)
This commit is contained in:
parent
14d1879ccd
commit
79af39f35e
|
@ -22,6 +22,7 @@ import MoreVertIcon from "@mui/icons-material/MoreVert";
|
|||
import IconButton from "@mui/material/IconButton";
|
||||
import DeleteDialog from "./DeleteDialog";
|
||||
import AddEditDialog from "./AddEditDialog";
|
||||
import React from "react";
|
||||
|
||||
interface Props {
|
||||
Frame: (props: FrameProps) => JSX.Element;
|
||||
|
|
|
@ -6,6 +6,7 @@ import { createTheme, ThemeProvider } from "@mui/material/styles";
|
|||
import { render } from "@testing-library/react";
|
||||
import { MemoryRouter } from "react-router-dom";
|
||||
import { SnackbarProvider } from "./snackbars";
|
||||
import React from "react";
|
||||
|
||||
export function renderWithCtx(
|
||||
children: React.ReactElement
|
||||
|
|
Loading…
Reference in New Issue