cnap-cobre/synapse

View on GitHub
frontend/src/components/FileBrowserList/FileFieldHeader/FileFieldHeader.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
 
export default function FieldFieldHeader() {
return (
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Last Modified</th>
</tr>
</thead>
);
}