/** * @fileoverview PreCode component for rendering
 tags in Markdown.
 * Extracted from the main markdown renderer for modularity.
 * This is a simple wrapper around the HTML 
 element.
 */
import React, { useRef } from 'react'

function PreCode(props: { children: any }) {
  const ref = useRef(null)

  return (
    
      
      {props.children}
    
) } export default PreCode