forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.4 KiB
88 lines
1.4 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<table
|
|
className="filter-table"
|
|
>
|
|
<tbody />
|
|
</table>
|
|
`;
|
|
|
|
exports[`Render should render table 1`] = `
|
|
<table
|
|
className="filter-table"
|
|
>
|
|
<tbody>
|
|
<tr
|
|
key="0-0"
|
|
>
|
|
<td
|
|
className="width-1"
|
|
>
|
|
<Icon
|
|
name="apps"
|
|
/>
|
|
</td>
|
|
<td>
|
|
<span>
|
|
Graphite Carbon Metrics
|
|
</span>
|
|
</td>
|
|
<td
|
|
style={
|
|
Object {
|
|
"textAlign": "right",
|
|
}
|
|
}
|
|
>
|
|
<Button
|
|
onClick={[Function]}
|
|
size="sm"
|
|
variant="secondary"
|
|
>
|
|
Import
|
|
</Button>
|
|
</td>
|
|
</tr>
|
|
<tr
|
|
key="0-1"
|
|
>
|
|
<td
|
|
className="width-1"
|
|
>
|
|
<Icon
|
|
name="apps"
|
|
/>
|
|
</td>
|
|
<td>
|
|
<a
|
|
href=""
|
|
>
|
|
Graphite Carbon Metrics
|
|
</a>
|
|
</td>
|
|
<td
|
|
style={
|
|
Object {
|
|
"textAlign": "right",
|
|
}
|
|
}
|
|
>
|
|
<Button
|
|
onClick={[Function]}
|
|
size="sm"
|
|
variant="secondary"
|
|
>
|
|
Update
|
|
</Button>
|
|
<Button
|
|
icon="trash-alt"
|
|
onClick={[Function]}
|
|
size="sm"
|
|
variant="destructive"
|
|
/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
`;
|
|
|