| 1 | import { Center, Text, VStack } from '@chakra-ui/react' |
| 2 | |
| 3 | interface EmptyStateProps { |
| 4 | title: string |
| 5 | message: string |
| 6 | } |
| 7 | |
| 8 | export default function EmptyState({ title, message }: EmptyStateProps) { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected