import React, { PropsWithChildren } from "react"; export const Code: React.FC = ({ children }) => { return ( {children} ); };