mirror of
https://github.com/Noratrieb/mx-3.git
synced 2026-01-15 07:45:06 +01:00
spinner position
This commit is contained in:
parent
091c63b7b8
commit
8ba2cefdd6
1 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
import React, { useEffect, useRef, useState } from "react";
|
import React, { useEffect, useRef, useState } from "react";
|
||||||
import { Button, Card, Container, Form, FormControl, FormGroup, FormLabel, Row, Spinner } from "react-bootstrap";
|
import { Button, Card, Col, Container, Form, FormControl, FormGroup, FormLabel, Row, Spinner } from "react-bootstrap";
|
||||||
import client from "./ApiClient";
|
import client from "./ApiClient";
|
||||||
import { Band, Option } from "./Types";
|
import { Band, Option } from "./Types";
|
||||||
import ModalBand from "./ModalBand";
|
import ModalBand from "./ModalBand";
|
||||||
|
|
@ -53,7 +53,9 @@ function App() {
|
||||||
</Card>
|
</Card>
|
||||||
))
|
))
|
||||||
) : bandQuery ? (
|
) : bandQuery ? (
|
||||||
|
<Col>
|
||||||
<Spinner animation="border" />
|
<Spinner animation="border" />
|
||||||
|
</Col>
|
||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue