19 lines
244 B
Svelte
19 lines
244 B
Svelte
|
<div>
|
||
|
<Identification {...ship.general} />
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
import Identification from './Identification';
|
||
|
export let ship;
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
div {
|
||
|
width: 4.25in;
|
||
|
height: 5.5in;
|
||
|
border: 1px solid black;
|
||
|
padding: 1em;
|
||
|
}
|
||
|
</style>
|