import React from "react";
import AgentShell from "@/components/AgentShell";

export default function AgentMainLayout({ children }: { children: React.ReactNode }) {
  return <AgentShell>{children}</AgentShell>;
}
