diff --git a/components/custom-pages/PageContent/PageContent.module.css b/components/core/HTMLContent/HTMLContent.module.css similarity index 100% rename from components/custom-pages/PageContent/PageContent.module.css rename to components/core/HTMLContent/HTMLContent.module.css diff --git a/components/custom-pages/PageContent/PageContent.tsx b/components/core/HTMLContent/HTMLContent.tsx similarity index 66% rename from components/custom-pages/PageContent/PageContent.tsx rename to components/core/HTMLContent/HTMLContent.tsx index 7237b9fa8..d041ff369 100644 --- a/components/custom-pages/PageContent/PageContent.tsx +++ b/components/core/HTMLContent/HTMLContent.tsx @@ -1,12 +1,12 @@ import cn from 'classnames' -import s from './PageContent.module.css' +import s from './HTMLContent.module.css' type Props = { className?: 'string' html: string } -export default function PageContent({ className, html }: Props) { +export default function HTMLContent({ className, html }: Props) { return (
) { return (
- +
) }