mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-07-11 19:45:20 +02:00
12 lines
369 B
JavaScript
12 lines
369 B
JavaScript
import React from 'react';
|
|
import PageView from './PageView.jsx';
|
|
import TextItemTable from './TextItemTable.jsx';
|
|
|
|
// View for a Page which items are of kind TextItem
|
|
export default class TextItemPageView extends PageView {
|
|
|
|
createItemViews(items, showWhitespaces) {
|
|
return <TextItemTable textItems={ items } showWhitespaces={ showWhitespaces } />
|
|
}
|
|
|
|
} |