type function call for Container in Animation class

This commit is contained in:
August Skare
2018-11-19 09:57:18 +01:00
parent f519f5744e
commit e2607980eb

View File

@@ -69,9 +69,12 @@ class BaseAnimation extends React.PureComponent<AnimationProps, AnimationState>
};
}
const Container = styled.div`
const Container =
styled.div <
AnimationProps >
`
width: 100%;
height: ${(props: { height: number }) => props.height}px;
height: ${props => props.height}px;
position: absolute;
top: 40%;
left: 0;