mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
import React from 'react';
|
|
|
|
export function CellTextSpan({ cell: { value } }) {
|
|
return (<span class="cell-text">{ value }</span>)
|
|
}
|