Skip to content

Commit f084f65

Browse files
committed
[feature] Add manual control view to main view for now
1 parent 39f0e14 commit f084f65

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/AutonomousControl.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<div id="container">
33
<TeamOverview class="view"/>
44
<Events/>
5+
<ManualControl/>
56
<CurrentEvents class="view"/>
67
<EventProposals class="view"/>
78
</div>
@@ -14,10 +15,12 @@
1415
import EventProposals from "./events/EventProposals";
1516
import CurrentEvents from "./events/CurrentEvents";
1617
import Settings from "./settings/Settings";
18+
import ManualControl from "./manual-control/ManualControl";
1719
1820
export default {
1921
name: "AutonomousControl",
2022
components: {
23+
ManualControl,
2124
Settings,
2225
CurrentEvents,
2326
EventProposals,

src/components/manual-control/ManualControl.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="container">
2+
<div>
33
<table>
44
<tr>
55
<td colspan="2">

0 commit comments

Comments
 (0)