lottify
v1.0.3
Published
Lottie Animation View for React
Maintainers
Readme
Lottify
Lottie Animation View for React
Installation
Install through npm:
npm i --save lottifyor yarn:
yarn add lottifyUsage
import React from 'react'
import Lottie from 'lottify';
const App: React.FC = () => {
return (
<div>
<Lottie
path="<path_to_lottie_json>"
height={400}
width={400}
/>
</div>
)
}
export default App