You've already forked AstralRinth
forked from didirus/AstralRinth
16 lines
297 B
Svelte
16 lines
297 B
Svelte
<script lang="ts">
|
|
import { FormField, TextInput } from "omorphia"
|
|
</script>
|
|
|
|
<div class="section">
|
|
<FormField label="Window width">
|
|
<TextInput />
|
|
</FormField>
|
|
<FormField label="Window height">
|
|
<TextInput />
|
|
</FormField>
|
|
</div>
|
|
|
|
<style lang="postcss">
|
|
</style>
|