| 175 | }); |
| 176 | |
| 177 | interface ViewProps extends HTMLMotionProps<'div'> { |
| 178 | children: JSX.Element; |
| 179 | } |
| 180 | |
| 181 | const View = memo(({ children, ...props }: ViewProps) => { |
| 182 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected