diff --git a/src/App/BottomPanel.tsx b/src/App/BottomPanel.tsx
index b829fc6..27d31ce 100644
--- a/src/App/BottomPanel.tsx
+++ b/src/App/BottomPanel.tsx
@@ -6,9 +6,10 @@ import "./BottomPanel.css";
import head from "../head.svg" ;
import { usePersistentState } from "@/util/persistent_state";
import { PersistentDetails } from "./PersistentDetails";
+import { DigitalWatch } from "@/Plant/DigitalWatch/DigitalWatch";
export function BottomPanel(props: {errors: TraceableError[]}) {
- const [greeting, setGreeting] = useState(<> "Welcome to StateBuddy, buddy!">);
+ const [greeting, setGreeting] = useState(<>
"Welcome to StateBuddy, buddy!"
>);
useEffect(() => {
setTimeout(() => {
@@ -17,7 +18,8 @@ export function BottomPanel(props: {errors: TraceableError[]}) {
}, []);
return