Loading State for Button

This commit is contained in:
Belen Curcio
2020-10-14 17:21:29 -03:00
parent c06073ea55
commit 04d79f1f7f
9 changed files with 100 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
import s from './LoadingDots.module.css'
const LoadingDots: React.FC = () => {
return (
<span className={s.loading}>
<span />
<span />
<span />
</span>
)
}
export default LoadingDots