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

14 lines
203 B
JavaScript
Raw Normal View History

2020-07-19 20:21:28 +00:00
export default {
2022-03-01 17:42:33 +00:00
title: "FTL Drive",
2020-07-19 20:21:28 +00:00
};
2022-03-01 17:42:33 +00:00
import Component from ".";
import shipStore from "../../stores/ship.js";
2020-07-19 20:21:28 +00:00
export const basic = () => ({
2022-03-01 17:42:33 +00:00
Component,
props: {
ship: shipStore(),
},
2020-07-19 20:21:28 +00:00
});