summaryrefslogtreecommitdiff
path: root/client/src/pages/ServerSelection.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-07-24 04:29:37 -0700
committer8cy <[email protected]>2020-07-24 04:29:37 -0700
commit60a2442559d5bbd43d9a02a9dcbfe2bb34820724 (patch)
treed6208984e638e3a15baff3c981e45b362569f08b /client/src/pages/ServerSelection.js
parentchore: remove spike dir (diff)
downloaddep-core-60a2442559d5bbd43d9a02a9dcbfe2bb34820724.tar.xz
dep-core-60a2442559d5bbd43d9a02a9dcbfe2bb34820724.zip
stage
Diffstat (limited to 'client/src/pages/ServerSelection.js')
-rw-r--r--client/src/pages/ServerSelection.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/pages/ServerSelection.js b/client/src/pages/ServerSelection.js
index f1e3a39..7e27982 100644
--- a/client/src/pages/ServerSelection.js
+++ b/client/src/pages/ServerSelection.js
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
-import { MDBAlert, MDBRow } from 'mdbreact';
+import { Alert, CardColumns } from 'react-bootstrap';
import ServerCard from '../components/selection/ServerCard';
@@ -10,18 +10,18 @@ export default class ServerSelection extends Component {
if (!guilds.length) {
return(
- <MDBAlert color="warning">
+ <Alert variant="warning">
<strong>You cannot manage any servers</strong>
- </MDBAlert>
+ </Alert>
);
} else {
return(
<React.Fragment>
- <MDBRow>
+ <CardColumns>
{guilds.map(guild => {
return(<ServerCard guild={guild} />);
})}
- </MDBRow>
+ </CardColumns>
</React.Fragment>
);
}