initial commit

This commit is contained in:
Rich Harris
2017-12-17 14:47:18 -05:00
commit 600360665d
27 changed files with 893 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<Nav page={{page}}/>
<main>
<slot></slot>
</main>
<script>
import Nav from './Nav.html';
export default {
components: {
Nav
}
};
</script>