cadc34dad4
New "CRA / Cyber" tab in the IACE project (Zusatzmodule). Treats the Kistenhubgeraet CE project as if it had an IoT module; invented cyber findings are mapped to CRA Annex I requirements via the REAL backend mapper output (faithful), and crucially cross-linked to the existing CE safety hazards they re-open (cyber defeats a mechanically-mitigated guard -> CRA x Machinery Reg). Frontend fixture for now; live wiring to the mapper endpoint follows. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
'use client'
|
|
|
|
import { useCRADemo } from './_hooks/useCRADemo'
|
|
import { CRACyberView } from './_components/CRACyberView'
|
|
|
|
export default function CRAPage() {
|
|
const { data } = useCRADemo()
|
|
return <CRACyberView data={data} />
|
|
}
|