chat / client /src /components /Files /FileList /EmptyFilePreview.tsx
Zhitomir's picture
chat init
aa2e6af
Raw
History Blame Contribute Delete
212 Bytes
import React from 'react';
export default function EmptyFilePreview() {
return (
<div className="h-full w-full content-center text-center font-bold">
Select a file to view details.
</div>
);
}