diff options
Diffstat (limited to 'packages/website/ts/@next/components/heroImage.tsx')
-rw-r--r-- | packages/website/ts/@next/components/heroImage.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/website/ts/@next/components/heroImage.tsx b/packages/website/ts/@next/components/heroImage.tsx index 956218083..af7c055ac 100644 --- a/packages/website/ts/@next/components/heroImage.tsx +++ b/packages/website/ts/@next/components/heroImage.tsx @@ -5,11 +5,7 @@ interface Props { image: React.ReactNode; } -export const LandingAnimation = (props: Props) => ( - <Wrap> - {props.image} - </Wrap> -); +export const LandingAnimation = (props: Props) => <Wrap>{props.image}</Wrap>; const Wrap = styled.figure` display: inline-block; |