aotds-docks/src/routes/(editor)/export/print/PrintShip/Armor/index.story.svelte

14 lines
216 B
Svelte
Raw Normal View History

2023-04-27 16:17:08 +00:00
<Hst.Story title="Export/PrintShip/Armor">
<Hst.Variant>
<Armor {layers} />
</Hst.Variant>
</Hst.Story>
<script>
import Armor from "./index.svelte";
export let Hst;
let layers = [1, 2, 3];
</script>