'use client' import { useCRA } from './_hooks/useCRA' import { CRACyberView } from './_components/CRACyberView' import { WeightsControl } from './_components/WeightsControl' export default function CRAPage() { const { data, live, weights, setWeights } = useCRA() if (!data) { return

CRA-Risikobeurteilung wird geladen …

} return (
{!live && (

Backend nicht erreichbar — statisches Szenario angezeigt.

)}
) }