10 lines
264 B
Svelte
10 lines
264 B
Svelte
<script>
|
|
import InputGroup from "$components/layout/InputGroup.svelte";
|
|
</script>
|
|
|
|
<InputGroup>
|
|
<input type="text" data-testid="input1" />
|
|
<input type="text" data-testid="input2" />
|
|
<button data-testid="button">Кнопка</button>
|
|
</InputGroup>
|