File size: 322 Bytes
f0743f4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
  );
}