mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
28 lines
513 B
Plaintext
28 lines
513 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`SelectOption renders correctly 1`] = `
|
|
<div
|
|
id=""
|
|
onClick={[MockFunction]}
|
|
onMouseMove={[MockFunction]}
|
|
onMouseOver={[MockFunction]}
|
|
tabIndex={1}
|
|
>
|
|
<div
|
|
className="gf-form-select-box__desc-option"
|
|
>
|
|
<img
|
|
className="gf-form-select-box__desc-option__img"
|
|
src="url/to/avatar"
|
|
/>
|
|
<div
|
|
className="gf-form-select-box__desc-option__body"
|
|
>
|
|
<div>
|
|
Model title
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|