Files
sapper-template/routes/index.html
2018-07-04 15:43:46 -04:00

24 lines
340 B
HTML

<Nav {path}/>
<main>
<svelte:component this={sapper.child} {...sapper.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>