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

export default SampleCode;