import Lottie from "react-lottie"; import * as loadingData from "./loading.json"; const loadingOption = { loop: true, autoplay: true, animationData: loadingData, rendererSettings: { preserveAspectRatio: "xMidYMid slice", }, }; interface LoaderProps { isSuccess: boolean; } export function Loader(props: LoaderProps) { return ( <> {!props.isSuccess && (