aotds-docks/src/lib/components/Output/Print/Hull/Integrity/stories.js

24 lines
327 B
JavaScript
Raw Normal View History

2022-03-01 17:42:33 +00:00
import Component from ".";
2020-07-29 19:56:19 +00:00
export default {
2022-03-01 17:42:33 +00:00
title: "printouts/hull/integrity",
2020-07-29 19:56:19 +00:00
};
export const basic = () => ({
2022-03-01 17:42:33 +00:00
Component,
props: {
ship_mass: 50,
rating: 14,
advanced: false,
},
2020-07-29 19:56:19 +00:00
});
export const advanced = () => ({
2022-03-01 17:42:33 +00:00
Component,
props: {
ship_mass: 50,
rating: 14,
advanced: true,
},
2020-07-29 19:56:19 +00:00
});