Loading.js 461 Bytes
Newer Older
Spark's avatar
Spark committed
1
2
3
4
5
6
import React from 'react'
import { Spinner, Row, Button } from 'react-bootstrap';

function Loading() {
    return (
            <Button id='formbtn' className='d-flex justify-content-center align-items-center m-auto' style={{ width: '200px', height: '200px', flexDirection: 'column' }} disabled>
Spark's avatar
Spark committed
7
                <Spinner animation="border" role="status"/>
Spark's avatar
Spark committed
8
9
10
11
12
13
14
                <br />
                Loading...
            </Button>
    )
}

export default Loading;