| 2 | import Scanline from "@/components/scanline"; |
| 3 | |
| 4 | interface FrameProps { |
| 5 | children: React.ReactNode; |
| 6 | classNames?: { |
| 7 | wrapper?: string; |
| 8 | frame?: string; |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | export default function Frame({ children, classNames }: FrameProps) { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected