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