import React from 'react'; import PageView from './PageView.jsx'; import Table from 'react-bootstrap/lib/Table' export default class TextPageView extends PageView { createItemViews(items, showWhitespaces) { // eslint-disable-line no-unused-vars return
{ items.map((block, i) => ) }
# Category Text
{ i } { block.category }
{ block.text }
} }