OrgProfile.test.tsx.snap 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Render should render component 1`] = `
  3. <div>
  4. <h3
  5. className="page-sub-heading"
  6. >
  7. Organization profile
  8. </h3>
  9. <form
  10. className="gf-form-group"
  11. name="orgForm"
  12. onSubmit={[Function]}
  13. >
  14. <div
  15. className="gf-form-inline"
  16. >
  17. <div
  18. className="gf-form max-width-28"
  19. >
  20. <span
  21. className="gf-form-label"
  22. >
  23. Organization name
  24. </span>
  25. <Input
  26. className="gf-form-input"
  27. onChange={[Function]}
  28. type="text"
  29. value="Main org"
  30. />
  31. </div>
  32. </div>
  33. <div
  34. className="gf-form-button-row"
  35. >
  36. <button
  37. className="btn btn-primary"
  38. type="submit"
  39. >
  40. Save
  41. </button>
  42. </div>
  43. </form>
  44. </div>
  45. `;