import React from 'react'; import highlight from '../helpers/highlight'; interface SampleCodeProps { code: string; lang: string; } const SampleCode: React.FC = ({ code, lang }) => { return code === '' ? <> : (
            );
};

export default SampleCode;