"use client"; import { Light as SyntaxHighlighter } from "react-syntax-highlighter"; import { atomOneDark } from "react-syntax-highlighter/dist/esm/styles/hljs"; import Image from "next/image"; type Props = { text: string; }; export const TextCode: React.FC = ({ text }) => (
{/* // @ts-ignore */} {text}
);