Skip to content

Commit

Permalink
Import fixes and formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Mar 1, 2024
1 parent e2e9a0c commit 3a03a9a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 18 deletions.
18 changes: 5 additions & 13 deletions control-station/src/components/ControlPanel/ControlPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
import "./controlpanel.css";
import "./ControlPanel.css";

export default function ControlPanel() {
return (
<div className="controlpanel">
<button className="button start">
Start
</button>
<button className="button stop">
Stop
</button>
<button className="button force">
Force Stop
</button>
<button className="button load">
Load
</button>
<button className="button start">Start</button>
<button className="button stop">Stop</button>
<button className="button force">Force Stop</button>
<button className="button load">Load</button>
</div>
);
}
4 changes: 3 additions & 1 deletion control-station/src/components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import "./navbar.css";
import HX from "@/data/images/HX Logo.svg";

import "./Navbar.css";

export default function Navbar() {
return (
<header className="navbar">
Expand Down
3 changes: 2 additions & 1 deletion control-station/src/components/SensorBoxes/Camera.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import "./sensorboxct.css";
import "./SensorData.css";

export default function Camera() {
return <div className="camera"></div>;
}
2 changes: 1 addition & 1 deletion control-station/src/components/SensorBoxes/Console.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "./sensorboxct.css";
import "./SensorData.css";

export default function Console() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import "./sensorbox.css";
import "./SensorBox.css";

export default function SensorBox() {
return (
<div className="sensorbox">
Expand Down
1 change: 0 additions & 1 deletion control-station/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ export { default as ControlPanel } from "./ControlPanel/ControlPanel";
export { default as Navbar } from "./Navbar/Navbar";
export { default as SensorData } from "./SensorBoxes/SensorData";
export { default as Status } from "./status/Status";

0 comments on commit 3a03a9a

Please sign in to comment.