prettify
This commit is contained in:
parent
ce31dc62c2
commit
111b4975ee
|
@ -9,7 +9,9 @@ export const FallbackSpinner = ({ height }) => {
|
||||||
setShow(true);
|
setShow(true);
|
||||||
}, 500);
|
}, 500);
|
||||||
}, []);
|
}, []);
|
||||||
return <div className={styles.container} style={{height}}>{
|
return (
|
||||||
show ? <RefreshIcon className={styles.icon} /> : null
|
<div className={styles.container} style={{ height }}>
|
||||||
}</div>;
|
{show ? <RefreshIcon className={styles.icon} /> : null}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user