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

{name}

) : null}
)}
);