{this.state.testOrder && (
Test Order
This is a test order. BE CAREFUL WITH SHIPPING THIS ORDER!
)}
);
return (
{/* Step progress indicator */}
Find CustomerSearch by order # or emailCreate OrderSelect items and submit
{customerSelected && (
{this.state.customerName}
Account ID: {this.state.ownerBigscreenAccountId}
)}
{(this.state.searchPerformed && this.state.customerName === null && this.state.ownerBigscreenAccountId === null) && (
No customer found.
)}
{customerSelected && (
{customOrderForm}
{cartColumn}
)}
);
}
}