aboutsummaryrefslogtreecommitdiff
path: root/client/src/App.vue
blob: 4c954ecef4941e6f8834aa4ef87246228966b4fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <ZonePicker />
</template>

<script>
import ZonePicker from './components/ZonePicker.vue'

export default {
  components: {
    ZonePicker
  }
}
</script>