Some checks failed
Build and Push Docker Image / build (push) Failing after 4m20s
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { Link } from "@tanstack/solid-router";
|
|
|
|
import TanStackQueryHeaderUser from "../integrations/tanstack-query/header-user.tsx";
|
|
|
|
export default function Header() {
|
|
return (
|
|
<div class="flex items-center justify-between px-4">
|
|
<Link to="/">Home</Link>
|
|
<Link to="/todo">Todo</Link>
|
|
<Link to="/shorten">Shorten</Link>
|
|
<TanStackQueryHeaderUser />
|
|
</div>
|
|
);
|
|
}
|