chat / client /src /components /Prompts /EmptyPromptPreview.tsx
helloya20's picture
Upload 2345 files
f0743f4 verified
import React from 'react';
import { useLocalize } from '~/hooks';
export default function EmptyPromptPreview() {
const localize = useLocalize();
return (
<div className="h-full w-full content-center text-center font-bold text-text-secondary">
{localize('com_ui_select_or_create_prompt')}
</div>
);
}