// Types import type { CSSProperties, FC } from 'react'; // Custom Types export interface SimpleCodeBlockProps { children?: string; styles?: CSSProperties; } const SimpleCodeBlock: FC = (props) => { // Props const { children = '', styles } = props; return (
      {children}
    
); }; export default SimpleCodeBlock;