import React from 'react'; import deploymentDetails from '../assets/deployments.json'; import DeployDetailsCard from './DeploymentDetailsCard'; import Dropdown from './Dropdown'; const statusOptions = [ { value: 'production', label: 'Production' }, { value: 'preview', label: 'Preview' }, ]; const Deployments = () => { return (