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

19 lines
341 B
Svelte
Raw Normal View History

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