Done on function Ban and Unban User with reason and expiration date

This commit is contained in:
2026-01-21 20:28:04 +07:00
parent e02564b5cd
commit a8745327d6
23 changed files with 511 additions and 239 deletions

View File

@@ -0,0 +1,9 @@
const DisplayBreakLineMessage = ({
children,
}: {
children: React.ReactNode;
}) => {
return <pre className="font-sans text-black text-sm">{children}</pre>;
};
export default DisplayBreakLineMessage;