'use client'
import React from 'react'
import type { StepProps } from '../_types'
import { CONTRACT_TILES } from '../_tiles'
import { toggleInArray } from '../_data'
export function Step8Contracts({ form, updateForm }: StepProps) {
return (
Vertraege & Compliance-Dokumentation
Welche Compliance-Dokumente liegen bereits vor? (Mehrfachauswahl moeglich)
{CONTRACT_TILES.map(item => (
))}
)
}