element-web/test/components/views/settings/shared/__snapshots__/SettingsSubsectionHeading-test.tsx.snap
Kerry 776ffa4764
Device manager - current session context menu (#9386)
* add destructive option and close on interaction options

* add kebab context menu wrapper

* use kebab context menu in current device section

* use named export

* lint

* sessionman tests
2022-10-13 09:07:34 +02:00

38 lines
693 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<SettingsSubsectionHeading /> renders with children 1`] = `
Object {
"container": <div>
<div
class="mx_SettingsSubsectionHeading"
>
<h3
class="mx_Heading_h3 mx_SettingsSubsectionHeading_heading"
>
test
</h3>
<a
href="/#"
>
test
</a>
</div>
</div>,
}
`;
exports[`<SettingsSubsectionHeading /> renders without children 1`] = `
Object {
"container": <div>
<div
class="mx_SettingsSubsectionHeading"
>
<h3
class="mx_Heading_h3 mx_SettingsSubsectionHeading_heading"
>
test
</h3>
</div>
</div>,
}
`;