import React, { Fragment } from 'react'; import { Field } from 'redux-form'; import { Margin } from 'styled-components-spacing'; import Description from '@components/create-instance/description'; import { H3, FormGroup, FormLabel, Input, FormMeta, Button } from 'joyent-ui-toolkit'; export default ({ handleSubmit, pristine, expanded, name, onCancel }) => (
{expanded ? ( Your instance name will be used to identify this specific instance. Instance Name ) : ( {name ? (

{name}

) : null}
)}
);