object-property.js 238 B

1234567891011121314
  1. const tabs = [
  2. {
  3. title: "General Info",
  4. content: (
  5. <GeneralForm
  6. long-attribute="i-need-long-value-here"
  7. onSave={ onSave }
  8. onCancel={ onCancel }
  9. countries={ countries }
  10. />
  11. )
  12. }
  13. ];