fix responsive admin forum

deskripsi:
- fix table postig
- fix report posting & report komentar
This commit is contained in:
2025-04-17 14:16:38 +08:00
parent e97fd98077
commit 317119b4db
12 changed files with 193 additions and 162 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import { MainColor } from "../../color";
export function Component_SetInnerHtml({
props,
color,
}: {
props: string
color?: string;
}) {
return (
<>
<div
style={{
color: color ? color : MainColor.white,
}}
dangerouslySetInnerHTML={{
__html: props,
}}
/>
</>
);
}