mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
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
|