2023-04-06 01:33:08 +02:00
|
|
|
<script lang="ts">
|
|
|
|
// Testing grounds
|
2023-12-14 18:25:35 +01:00
|
|
|
import { UIEventSource } from "../Logic/UIEventSource"
|
|
|
|
import SlopeInput from "./InputElement/Helpers/SlopeInput.svelte"
|
|
|
|
let value: UIEventSource<string> = new UIEventSource(undefined)
|
2023-04-06 01:33:08 +02:00
|
|
|
</script>
|
2023-12-01 15:23:28 +01:00
|
|
|
|
2023-12-14 18:25:35 +01:00
|
|
|
<div class="w-full flex flex-col">
|
|
|
|
<div>Value: {$value}</div>
|
|
|
|
</div>
|
|
|
|
<SlopeInput {value}></SlopeInput>
|