nicklima/strapi-blog-frontend-next

View on GitHub
components/Wysiwyg/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import rehypeRaw from "rehype-raw"
import * as Styled from "./styled"

const Wysiwyg = ({ content }: any) => (
  <Styled.Wysiwyg rehypePlugins={[rehypeRaw]}>{content}</Styled.Wysiwyg>
)

export default Wysiwyg