Skip to content

Commit 6a0ea74

Browse files
committed
chore(components): prepare file for Button, Loader, Modal components
1 parent 1c652c0 commit 6a0ea74

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

src/components/Button.jsx

Whitespace-only changes.

src/components/Loader.jsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Spinner } from 'react-bootstrap';
2+
3+
export const Loader = () => {
4+
return (
5+
<Spinner animation="border" role="status" variant="primary">
6+
<span className="visually-hidden">Loading...</span>
7+
</Spinner>
8+
);
9+
};

src/components/Modal.jsx

Whitespace-only changes.

0 commit comments

Comments
 (0)