Files
sapper-template/routes/_components/Layout.html
Rich Harris a7cb019102 update to v2
2018-04-19 11:05:29 -04:00

15 lines
150 B
HTML

<Nav page={page}/>
<main>
<slot></slot>
</main>
<script>
import Nav from './Nav.html';
export default {
components: {
Nav
}
};
</script>