import "./style.css"; import React from "react"; import logoUrl from "../assets/logo.svg"; import { Link } from "../components/Link.js"; import { usePageContext } from "vike-react/usePageContext"; export default function LayoutDefault({ children, }: { children: React.ReactNode; }) { const pageContext = usePageContext(); return (
Welcome Todo (telefunc) Data Fetching {pageContext.auth ? ( Account ) : ( Auth )} {children}
); } function Sidebar({ children }: { children: React.ReactNode }) { return ( ); } function Content({ children }: { children: React.ReactNode }) { return (
{children}
); } function Logo() { return (
logo
); }