added tracker

This commit is contained in:
PxlLoewe
2025-06-01 15:50:36 -07:00
parent 6972216aaf
commit 5596bbe289
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { useQuery } from "@tanstack/react-query";
import { useState } from "react";
export const ConnectedDispatcher = () => {
const [open, setOpen] = useState(false);
const {} = useQuery({
queryKey: [""],
});
return (
<div className="absolute top-0 left-0 w-[300px] ">
<div className="bg-base-100 border-base-300 collapse border">
<input type="checkbox" className="peer" />
<div className="collapse-title bg-primary text-primary-content peer-checked:bg-secondary peer-checked:text-secondary-content">
How do I create an account?
</div>
<div className="collapse-content bg-primary text-primary-content peer-checked:bg-secondary peer-checked:text-secondary-content">
Click the "Sign Up" button in the top right corner and follow the registration process.
</div>
</div>
</div>
);
};