13 lines
315 B
Vue
13 lines
315 B
Vue
<template>
|
|
<div>
|
|
<RNBODevice />
|
|
<GainController />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import GainController from '~/components/experiments/GainController.vue'
|
|
import RNBODevice from '~/components/experiments/homepages/RNBODevice.vue'
|
|
import NavigationBar from '~/components/NavigationBar.vue'
|
|
</script>
|