Add Image Zoom (#510)

This commit is contained in:
Misha Bragin
2025-12-05 16:24:00 +01:00
committed by GitHub
parent de80c4bedf
commit 53f910aa81
2 changed files with 95 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import {ToastContainer} from "react-toastify";
import 'react-toastify/dist/ReactToastify.css';
import {dom} from "@fortawesome/fontawesome-svg-core";
import {AnnouncementBannerProvider} from "@/components/announcement-banner/AnnouncementBannerProvider";
import {ImageZoom} from "@/components/ImageZoom";
function onRouteChange() {
useMobileNavigationStore.getState().close()
@@ -42,6 +43,7 @@ export default function App({ Component, pageProps }) {
</MDXProvider>
</AnnouncementBannerProvider>
<ToastContainer />
<ImageZoom />
</>
)
}