diff --git a/src/panels/_Panels.tsx b/src/panels/_Panels.tsx index d5db7ec75ccefb38908d2c70dae1de771feaf092..e030ce0e8f1f132cf314de5303a840442aedf58b 100644 --- a/src/panels/_Panels.tsx +++ b/src/panels/_Panels.tsx @@ -7,6 +7,7 @@ import React from "react"; import FahrplanPanel from "./Fahrplan/FahrplanPanel"; import {PanelDefinition} from "../types/LayoutConfig"; import BildPanel from "./Bild"; +import PanelWrapper from "../meta/PanelWrapper"; /* * First, please claim a unique id for your panel here. Convention is that it is all lowercase, in snake-case to be @@ -22,7 +23,12 @@ export type PanelTypes = "fahrplan" | "bild"; */ export const PanelRenderers: {[panelType: string]: React.FC<any & {definition: PanelDefinition<any>}>} = { "fahrplan": FahrplanPanel, - "bild": BildPanel + "bild": BildPanel, + "placeholder": () => ( + <PanelWrapper className={"flex flex-col items-center justify-center text-zinc-400"}> + Dieses Panel wird noch entwickelt + </PanelWrapper> + ) };