Files
bigcapital/client/src/components/Datatable/Cells.js
2021-01-21 14:32:31 +02:00

6 lines
134 B
JavaScript

import React from 'react';
export function CellTextSpan({ cell: { value } }) {
return (<span class="cell-text">{ value }</span>)
}