mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-17 07:55:32 +01:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export default function EmptyPromptPreview() {
|
||
|
|
return (
|
||
|
|
<div className="h-full w-full content-center text-center font-bold dark:text-gray-200">
|
||
|
|
Select or Create a Prompt
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|