rqbit/crates/librqbit/webui/src/components/modal/ModalBody.tsx

6 lines
188 B
TypeScript
Raw Normal View History

import { ReactNode } from "react";
export const ModalBody = ({ children }: { children: ReactNode }) => {
2023-12-15 14:30:49 +00:00
return <div className="p-3 border-b dark:border-slate-500">{children}</div>;
};