8 lines
184 B
Svelte
8 lines
184 B
Svelte
<script>
|
|
import SettingsRow from "$components/layout/SettingsRow.svelte";
|
|
</script>
|
|
|
|
<SettingsRow label="Test Label">
|
|
<input type="text" data-testid="test-input" />
|
|
</SettingsRow>
|