File size: 183 Bytes
6bb2fbe
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { cn } from '@/lib/utils'

// Empty component
export default function Empty() {
  return (
    <div className={cn('flex h-full items-center justify-center')}>Empty</div>
  )
}