aotds-docks/src/lib/components/Propulsion/index.svelte

15 lines
323 B
Svelte
Raw Normal View History

2020-07-19 20:21:28 +00:00
<Section label="propulsion">
2022-03-01 17:42:33 +00:00
<Engine {...engine} on:change_engine />
2020-07-19 20:21:28 +00:00
2022-03-01 17:42:33 +00:00
<Ftl {...ftl} on:change_ftl />
2020-07-19 20:21:28 +00:00
</Section>
<script>
2022-03-01 17:42:33 +00:00
import Ftl from "../Ftl/index.svelte";
import Engine from "../Engine/index.svelte";
import Section from "../Section/index.svelte";
2020-07-19 20:21:28 +00:00
2022-03-01 17:42:33 +00:00
export let ftl = {};
export let engine = {};
2020-07-19 20:21:28 +00:00
</script>