Update components to use the new style/color names
This commit is contained in:
11
web/components/ui/CustomPageContent/CustomPageContent.tsx
Normal file
11
web/components/ui/CustomPageContent/CustomPageContent.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import s from './CustomPageContent.module.scss';
|
||||
|
||||
interface Props {
|
||||
content: string;
|
||||
}
|
||||
|
||||
export default function CustomPageContent(props: Props) {
|
||||
const { content } = props;
|
||||
// eslint-disable-next-line react/no-danger
|
||||
return <div className={s.customPageContent} dangerouslySetInnerHTML={{ __html: content }} />;
|
||||
}
|
||||
Reference in New Issue
Block a user