import * as React from 'react'; import TrialLog from './TrialLog'; interface PaitrialLogProps { logStr: string; } const PaitrialLog = (props: PaitrialLogProps): any => { const { logStr } = props; const isHasNFSLog = logStr.indexOf(',') !== -1 ? true : false; return (