Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / sections / Devices / headerCells.tsx
blob0b5aeb51ecbcbf6dc0c210eea1d56a1a6d130611
1 import { c } from 'ttag';
3 export const name = {
4     type: 'name',
5     getText: () => c('Label').t`Name`,
6     props: {
7         className: 'filebrowser-list-header-name-cell',
8     },
9 };
11 export const modificationTimeDevice = {
12     type: 'modificationTime',
13     getText: () => c('Label').t`Modified`,
14     props: {
15         className: 'w-1/6',
16     },
19 export default {
20     name,
21     modificationTimeDevice,