geändert auf FormContext - **WOP**

This commit is contained in:
rxf
2025-10-26 20:33:29 +01:00
parent 63aa295562
commit e3af52a2a0
14 changed files with 1982 additions and 85 deletions

View File

@@ -0,0 +1,21 @@
import FandStattVer from "./FandStattVer.jsx";
import Verschoben from "./Verschoben.jsx";
export default function NeinPfad({ isNein }) {
let verschoben = true
let dt = null
if (verschoben) {
dt = <Verschoben />
}
if (isNein) {
return (
<>
<FandStattVer left='abgesagt' right='verschoben' />
{dt}
</>
)
} else {
return null
}
}