import { useState } from 'preact/hooks' export const NewDeployForm = () => { const [deployType, setDeployType] = useState('initial') return (
) } const DeployRefOptions = ({}) => { const [refType, setRefType] = useState('default') return ( <>
) } const DeployOptions = ({ type }) => { switch (type) { case 'docker-image': return case 'dockerfile': return case 'docker-compose': return case 'shell': return default: return null } } const DockerDeploy = () => { return ( <>