UNPKG

react-native-zoom-toolkit

Version:

Smoothly zoom any image, video or component you want!

11 lines (9 loc) 293 B
type InvalidChildrenOptions = { name: string; expected: number; actual: number; }; export const getInvalidChildrenMessage = (options: InvalidChildrenOptions) => { const { name, expected, actual } = options; return `${name} expected ${expected} children, but received ${actual}`; };