import { ReactNode } from "react";

export default function CampaignLayout({ children }: { children: ReactNode }) {
  return (
    <div className="flex flex-col xl:flex-row bg-participant-light dark:bg-participant-dark">
      {children}
    </div>
  );
}
