export interface CodeProps { children: React.ReactNode; } export const Code = ({ children }: CodeProps): JSX.Element => ( {children} );