( props, ref, )
| 4 | import { StackProps } from './stack.types'; |
| 5 | |
| 6 | const StackComponent: ForwardRefRenderFunction<HTMLDivElement, StackProps> = ( |
| 7 | props, |
| 8 | ref, |
| 9 | ): JSX.Element => <ChakraStack ref={ref} {...props} />; |
| 10 | |
| 11 | export const Stack = memo(forwardRef(StackComponent)); |
nothing calls this directly
no outgoing calls
no test coverage detected