markdown.tsx 222 B

1234567891011
  1. import React, { ReactNode } from "react";
  2. interface ChildrenProps {
  3. children: ReactNode;
  4. }
  5. function ReactMarkdownMock({ children }: ChildrenProps) {
  6. return <p>{children}</p>;
  7. }
  8. export default ReactMarkdownMock;