add a couple missing imports

(not entirely sure why it works without them but may be complicating
an upgrade)
This commit is contained in:
Scott Lamb 2023-12-17 16:21:52 -08:00
parent 14d1879ccd
commit 79af39f35e
2 changed files with 2 additions and 0 deletions

View File

@ -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;

View File

@ -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