mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-22 08:47:22 +00:00
17 lines
402 B
JavaScript
17 lines
402 B
JavaScript
import React from 'react';
|
|
import { gettext } from '../utils/constants';
|
|
|
|
function LibsMobileThead() {
|
|
return (
|
|
<thead>
|
|
<tr>
|
|
<th width="12%"><span className="sr-only">{gettext('Library Type')}</span></th>
|
|
<th width="80%"></th>
|
|
<th width="8%"><span className="sr-only">{gettext('Actions')}</span></th>
|
|
</tr>
|
|
</thead>
|
|
);
|
|
}
|
|
|
|
export default LibsMobileThead;
|