mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-24 14:21:09 +00:00
23 lines
513 B
JavaScript
23 lines
513 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import PreviewLogEntry from './preview-log-entry'
|
|
|
|
function PreviewLogsPane({ logEntries }) {
|
|
return (
|
|
<div className="pdf-logs">
|
|
{logEntries && logEntries.length > 0 ? (
|
|
logEntries.map((logEntry, idx) => (
|
|
<PreviewLogEntry key={idx} {...logEntry} />
|
|
))
|
|
) : (
|
|
<div>No logs</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
PreviewLogsPane.propTypes = {
|
|
logEntries: PropTypes.array
|
|
}
|
|
|
|
export default PreviewLogsPane
|