We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f0e14 commit f084f65Copy full SHA for f084f65
src/components/AutonomousControl.vue
@@ -2,6 +2,7 @@
2
<div id="container">
3
<TeamOverview class="view"/>
4
<Events/>
5
+ <ManualControl/>
6
<CurrentEvents class="view"/>
7
<EventProposals class="view"/>
8
</div>
@@ -14,10 +15,12 @@
14
15
import EventProposals from "./events/EventProposals";
16
import CurrentEvents from "./events/CurrentEvents";
17
import Settings from "./settings/Settings";
18
+ import ManualControl from "./manual-control/ManualControl";
19
20
export default {
21
name: "AutonomousControl",
22
components: {
23
+ ManualControl,
24
Settings,
25
CurrentEvents,
26
EventProposals,
src/components/manual-control/ManualControl.vue
@@ -1,5 +1,5 @@
1
<template>
- <div class="container">
+ <div>
<table>
<tr>
<td colspan="2">
0 commit comments