import React from "react"; export default function TechInformation({techInformation}) { return ( <>
Technische informatie
{/*
Type deur
*/}
Deur type
{techInformation.type} {/* € 0,00 */}
{/*
Aantal deuren in offerte
*/}
Samenstelling deur {techInformation.doorConfig} {/* € 0,00 */}
{/*
Aantal en plaats zijpanelen
*/}
Samenstelling zijpaneel {techInformation.sidePannel} {/* € 0,00 */}
{/*
Verdeling elementen
*/}
Paneel verdeling {techInformation.sidePannelConfig} {/* € 0,00 */}
{techInformation.sidePannelConfig === "eigen maat" && (
{/*
Breedte deur
*/}
Breedte deur {techInformation.sidePannelSize} {/* € 0,00 */}
)}
Breedte deur {techInformation.width} {/* € 0,00 */}
Hoogte sparing {techInformation.height} {/* € 0,00 */}
Breedte sparing {techInformation.holeWidth} {/* € 0,00 */}
{/*
Vlakverdeling
*/}
Design {techInformation.door} {/* € 0,00 */}
{/*
Handgreep
*/}
Handgreep {techInformation.handle} {/* € 0,00 */}
{/*
Kleur glas
*/}
Glas soort {techInformation.colorGlass} {/* € 0,00 */}
{/*
RAL Kleur
*/}
Kleur {techInformation.steelColor} {/* € 0,00 */}
{/*
Verzending en montage
*/}
Extra opties
{techInformation.extraOptions.map((extraOption, index) => { return ( - {extraOption} ); })}
{/* € 0,00 */}
); }