RLSTesterEmptyState.tsx 470 B

12345678910111213
  1. import { ListTodo } from 'lucide-react'
  2. export const RLSTesterEmptyState = () => {
  3. return (
  4. <div className="flex flex-col items-center justify-center h-64">
  5. <ListTodo className="mb-2 text-foreground-light" />
  6. <p className="text-foreground-light text-sm">Test summary and results will be shown here</p>
  7. <p className="text-foreground-lighter text-sm">
  8. Verify that the results match what your RLS policies allow
  9. </p>
  10. </div>
  11. )
  12. }