mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-24 13:06:20 +00:00
60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
// Vitest Snapshot v1
|
|
|
|
exports[`RoomLink > should display 1`] = `
|
|
<DocumentFragment>
|
|
<form>
|
|
<div
|
|
class="form-group"
|
|
>
|
|
<div
|
|
class="input-group"
|
|
>
|
|
<input
|
|
class="form-control"
|
|
id="room-url"
|
|
readonly=""
|
|
type="text"
|
|
value="http://localhost:3000/roomId"
|
|
/>
|
|
<div
|
|
class="input-group-append"
|
|
>
|
|
<button
|
|
class="copy-room btn btn-secondary"
|
|
data-clipboard-text="http://localhost:3000/roomId"
|
|
data-placement="bottom"
|
|
data-toggle="tooltip"
|
|
title="copyButton"
|
|
type="button"
|
|
>
|
|
<svg
|
|
fill="none"
|
|
height="24"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect
|
|
height="13"
|
|
rx="2"
|
|
ry="2"
|
|
width="13"
|
|
x="9"
|
|
y="9"
|
|
/>
|
|
<path
|
|
d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</DocumentFragment>
|
|
`;
|