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

13 lines
230 B
Svelte
Raw Normal View History

2023-04-26 13:35:46 +00:00
<Hst.Story title="Export/PrintShip">
<PrintShip {...ship} />
</Hst.Story>
<script>
import PrintShip from "./index.svelte";
2023-04-30 16:08:42 +00:00
import sampleShip from "./sample-ship.ts";
2023-04-26 13:35:46 +00:00
export let Hst;
2023-04-30 16:08:42 +00:00
const ship = sampleShip;
2023-04-26 13:35:46 +00:00
</script>