import React from "react"; import { Animated, ViewProps } from "react-native"; import { Consumer } from "./context"; export const AnimationConsumer: React.FC = ({ children }) => ( {animationStyle => ( {children} )} );