blob: 8427ad6c179d46d3fa9e74594fcc21f8bc79d63a [file] [log] [blame]
export default function WifiLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<section>
<div className={"w-1/5 h-full bg-gray-100"}>
Test
</div>
{children}
</section>
);
}