diff --git a/web/packages/new/photos/components/WhatsNew.tsx b/web/packages/new/photos/components/WhatsNew.tsx index d9f3d4a0f1..8186a83fd3 100644 --- a/web/packages/new/photos/components/WhatsNew.tsx +++ b/web/packages/new/photos/components/WhatsNew.tsx @@ -1,4 +1,11 @@ -import { Dialog, styled, useMediaQuery } from "@mui/material"; +import { + Dialog, + DialogActions, + DialogContent, + DialogContentText, + DialogTitle, + useMediaQuery, +} from "@mui/material"; import React from "react"; interface WhatsNewProps { @@ -15,14 +22,18 @@ export const WhatsNew: React.FC = ({ onClose }) => { return ( - + {"What's new"} + + Content + + - + ); }; -const Contents = styled("div")` - width: 300px; - height: 300px; -`; +// const Contents = styled("div")` +// width: 300px; +// height: 300px; +// `;