mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-06 01:52:50 +00:00
17 lines
257 B
Svelte
17 lines
257 B
Svelte
<script lang="ts">
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<h1><a href="/ota-update/">Firmware Update</a></h1>
|
|
|
|
{@render children()}
|
|
|
|
<style lang="scss">
|
|
h1 {
|
|
margin-block: 1em;
|
|
padding: 0;
|
|
font-size: 3em;
|
|
font-weight: 400;
|
|
}
|
|
</style>
|