aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Client/src/App.vue
blob: af4ca3e706e63b7722e318db00dad5a852727dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <h1>HsMouse</h1>
  <INA226 />
  <CameraStream />
</template>

<script>
import INA226 from './INA226.vue'
import CameraStream from './CameraStream.vue'

export default {
  components: {
    INA226,
    CameraStream
  }
}
</script>