fix responsive admin forum
deskripsi: - fix table postig - fix report posting & report komentar
This commit is contained in:
@@ -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,
|
||||
}}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user