aotds-docks/src/components/Ftl/stories.js
2020-07-19 16:21:28 -04:00

14 lines
212 B
JavaScript

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