mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-12 10:25:16 +00:00
24 lines
359 B
HTML
24 lines
359 B
HTML
<Nav segment={child.segment}/>
|
|
|
|
<main>
|
|
<svelte:component this={child.component} {...child.props}/>
|
|
</main>
|
|
|
|
<style>
|
|
main {
|
|
position: relative;
|
|
max-width: 56em;
|
|
background-color: white;
|
|
padding: 2em;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
components: {
|
|
Nav: '../components/Nav.html'
|
|
}
|
|
};
|
|
</script> |