import React from 'react'; import { StretchyAnimationProps } from '../type'; const StretchyAnimation: React.FC = ({ children }) => { return children; }; export default StretchyAnimation;