Admin place demo look done

This commit is contained in:
2021-10-25 13:24:47 -03:00
parent 26251faea3
commit 94cd6f2263
30 changed files with 1101 additions and 21 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