1 import type { FC } from 'react';
3 import { c } from 'ttag';
5 import emptySvg from '@proton/styles/assets/img/illustrations/empty-device-root.svg';
7 import { DriveEmptyView } from '../../layout/DriveEmptyView';
11 const EmptyDeviceRoot: FC<Props> = () => {
16 // translator: Shown when accessing an empty computer
17 c('Info').t`No synced folders`
20 // translator: Shown when accessing an empty computer
21 c('Info').t`Folders you sync from your computer will appear here.`
27 export default EmptyDeviceRoot;