Skip to content

Commit

Permalink
Fix merge conflicts with yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyfeldroy committed Sep 25, 2021
2 parents 7625ae7 + 842bca2 commit db72278
Show file tree
Hide file tree
Showing 6 changed files with 4,991 additions and 1 deletion.
16 changes: 16 additions & 0 deletions components/Astronaout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Lottie from 'react-lottie';
import React from 'react';
import animationData from '../lotties/astronaut.json';

const defaultOptions = {
loop: true,
autoplay: true,
animationData: animationData,
rendererSettings: {
preserveAspectRatio: 'xMidYMid slice',
},
};

export default function AstronautLottie() {
return <Lottie height={400} options={defaultOptions} width={400} />;
}
Loading

0 comments on commit db72278

Please sign in to comment.