Add category done

This commit is contained in:
2021-10-22 22:30:58 -03:00
parent 3e9579b8ee
commit 0b97c3b942
10 changed files with 201 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react'
import loadingGifLightTheme from './loading-light-theme.png'
const Loading = () => {
return (
<div className='loading'>
<img src={loadingGifLightTheme} alt="loading" />
</div>
)
}
export default Loading