repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'INDA-330-pii-update' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
drive-store
/
components
/
FileBrowser
/
ListView
/
Cells
/
NameCell.tsx
blob
c833a1a5f407a28bbe2001397735273ea5752f4b
1
import { FileNameDisplay } from '@proton/components';
2
3
export const NameCell = ({ name }: { name: string }) => (
4
<div className="flex mr-4" data-testid="name-cell">
5
<FileNameDisplay text={name} />
6
</div>
7
);