Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Created November 1, 2020 09:04
Show Gist options
  • Save simonjcarr/48fc0e063a99aee9e57b34c5a5f4076b to your computer and use it in GitHub Desktop.
Save simonjcarr/48fc0e063a99aee9e57b34c5a5f4076b to your computer and use it in GitHub Desktop.
<template>
<div class="bg-orange-500 h-24 shadow">
<div class="text-3xl text-white p-8">ToDo's</div>
</div>
<div class="p-8">
<ToDo />
</div>
</template>
<script>
import ToDo from './components/ToDo.vue'
export default {
name: 'App',
components: {
ToDo
}
}
</script>
<style></style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment