Switch to unified view

a b/web-app/client/src/views/RegisterPatient.vue
1
<template>
2
  <div class="RegisterPatient">
3
    
4
    <regpatient />
5
  </div>
6
</template>
7
8
9
<script>
10
// @ is an alias to /src
11
// import HelloWorld from '@/components/HelloWorld.vue'
12
import regpatient from '../components/regpatient.vue'
13
export default {
14
  name: 'RegisterPatient',
15
  components: {
16
    regpatient
17
  }
18
}
19
</script>