Files
AstralRinth/theseus_gui/src/components/WindowSettings.svelte
2022-04-16 17:23:36 -07:00

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>