aotds-docks/src/lib/components/ShipSpecs/index.svelte

15 lines
210 B
Svelte
Raw Normal View History

2022-03-01 17:42:33 +00:00
<Identification />
2020-07-28 18:03:59 +00:00
2022-03-01 17:42:33 +00:00
<ShipCost />
2020-07-28 18:03:59 +00:00
<script>
import Identification from "./Identification.svelte";
import ShipCost from "./ShipCost.svelte";
</script>
<style>
2022-03-01 17:42:33 +00:00
div {
background-color: red;
}
2020-07-28 18:03:59 +00:00
</style>