UNPKG

@foreverrbum/ethsign

Version:

This package will allow you to electronically sign documents within your application

12 lines (10 loc) 242 B
/** * @author pzhu * @description for simple lottie */ import { useLottie } from 'lottie-react'; export const Lottie = (props) => { const {options, style={}} = props; const { View } = useLottie(options, style); return View; }