"use client"; /** * PticaPlaceholderPanel — honest "В разработке" panel for cockpit tabs/sections * that aren't wired in INCREMENT 1 (Scenarios / Reports / Compare). */ import styles from "@/app/site-finder/analysis/[cad]/ptica/ptica.module.css"; interface Props { label: string; hint?: string; } export function PticaPlaceholderPanel({ label, hint }: Props) { return (
{hint}
}