import type { PropsWithChildren } from "react";

export const VideoCallContainer = ({ children }: PropsWithChildren) => (
  <div className="fle-purple-gradient d-flex flex-column justify-content-between p-4">{children}</div>
);