flow-coverage-report
Version:
Generate an HTML report of the flow coverage data
24 lines (19 loc) • 522 B
JSX
;
// @flow
import React from 'react';
import type {Node} from 'react';
export const FlowCoverageFileTableHead = (): Node => {
return (
<thead>
<tr>
<th key="filename" className="sorted ascending">Filename</th>
<th key="annotation">Annotation</th>
<th key="percent">Percent</th>
<th key="total">Total</th>
<th key="covered">Covered</th>
<th key="uncovered">Uncovered</th>
</tr>
</thead>
);
};
export default FlowCoverageFileTableHead;