mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
43 lines
807 B
Plaintext
43 lines
807 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<div
|
|
className="page-action-bar"
|
|
>
|
|
<div
|
|
className="gf-form gf-form--grow"
|
|
>
|
|
<label
|
|
className="gf-form--has-input-icon"
|
|
>
|
|
<input
|
|
className="gf-form-input width-20"
|
|
onChange={[Function]}
|
|
placeholder="Filter by name or type"
|
|
type="text"
|
|
value=""
|
|
/>
|
|
<i
|
|
className="gf-form-input-icon fa fa-search"
|
|
/>
|
|
</label>
|
|
<LayoutSelector
|
|
mode="grid"
|
|
onLayoutModeChanged={[Function]}
|
|
/>
|
|
</div>
|
|
<div
|
|
className="page-action-bar__spacer"
|
|
/>
|
|
<a
|
|
className="page-header__cta btn btn-success"
|
|
href="datasources/new"
|
|
>
|
|
<i
|
|
className="fa fa-plus"
|
|
/>
|
|
Add data source
|
|
</a>
|
|
</div>
|
|
`;
|