From 87cab2b882ec13cdd61664b28a7394c0aa66f962 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Wed, 22 Oct 2025 17:16:54 +0000 Subject: [PATCH] feat: allow per-node overrides for Proxmox endpoints --- frontend-modern/src/components/NotificationContainer.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 frontend-modern/src/components/NotificationContainer.tsx diff --git a/frontend-modern/src/components/NotificationContainer.tsx b/frontend-modern/src/components/NotificationContainer.tsx new file mode 100644 index 0000000..f9c93aa --- /dev/null +++ b/frontend-modern/src/components/NotificationContainer.tsx @@ -0,0 +1,5 @@ +import type { Component } from 'solid-js'; + +const NotificationContainer: Component = () => null; + +export default NotificationContainer;