Files
AstralRinth/theseus_gui/src/components/WindowSettings.svelte
2022-08-01 22:45:24 +02:00

16 lines
277 B
Svelte

<script lang="ts">
import { Field, TextInput } from "omorphia"
</script>
<div class="section">
<Field label="Window width">
<TextInput />
</Field>
<Field label="Window height">
<TextInput />
</Field>
</div>
<style lang="postcss">
</style>