aotds-docks/src/lib/components/Ftl/stories.js

14 lines
203 B
JavaScript

export default {
title: "FTL Drive",
};
import Component from ".";
import shipStore from "../../stores/ship.js";
export const basic = () => ({
Component,
props: {
ship: shipStore(),
},
});