mirror of
https://gitlab.com/MrFry/qmining-data-editor
synced 2025-04-01 20:24:01 +02:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
import React, { PureComponent } from 'react'
|
|
|
|
class LoadingIndicator extends PureComponent {
|
|
render () {
|
|
return (
|
|
<div className='loadingindicator'>
|
|
Loading...
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default LoadingIndicator
|