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 (
{}} />
{deploymentDetails.map((deployment, key) => { return ; })}
); }; export default Deployments;