mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Changed loading indicator to function component
This commit is contained in:
parent
9dadc95f9c
commit
336266d3f5
1 changed files with 7 additions and 11 deletions
|
@ -1,15 +1,11 @@
|
|||
import React, { PureComponent } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
import styles from './LoadingIndicator.module.css'
|
||||
|
||||
class LoadingIndicator extends PureComponent {
|
||||
render() {
|
||||
export default function LoadingIndicator() {
|
||||
return (
|
||||
<div className={styles.loadContainer}>
|
||||
<div className={styles.load} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default LoadingIndicator
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue