dashboard-v2/frontend/src/components/NamingScheme.svelte
Ryan aed0f28f13
Migrate to svelte for frontend (#9)
* Svelte: WIP

* WIP

* WIP

* WIP

* WIP

* WIP

* Finished

* Remove redundant code

* Fix typo

* Re-add routes

* Form margin

* Mobile nicities

* Mobile changed

* Increase keepalvie

* Update Guild.svelte

* Update Whitelabel.svelte

* Whitelabel changes
2021-06-30 15:40:55 +01:00

17 lines
476 B
Svelte

<Radio label="Naming Scheme" col4=true>
<div class="radio-row">
<input class="radio-input" type=radio bind:group={value} value="id">
<label class="radio-label">#ticket-1</label>
</div>
<div class="radio-row">
<input class="radio-input" type=radio bind:group={value} value="username">
<label class="radio-label">#ticket-ryan</label>
</div>
</Radio>
<script>
import Radio from "./form/Radio.svelte";
export let value;
</script>