/* @refresh reload */ import { type Component } from "solid-js"; import type { TitleProps } from "../types/interfaces"; import Header from "./header"; export const Layout: Component = ({ children, title, className }) => { return (
{ children }
); };