import React, { Fragment } from 'react'; import { Field } from 'redux-form'; import { Margin } from 'styled-components-spacing'; import { H3, P, 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.

Name
) : (

{name}

)}
);