summaryrefslogtreecommitdiff
path: root/client/src/pages/CommandsList.js
blob: d74a2101b8d24e208b42b601aea490fc3dc4ead6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Alert, CardColumns } from 'react-bootstrap';

import ServerCard from '../components/selection/ServerCard';

export default class CommandsList extends Component {
    render() {
        return(
            <Alert variant="warning">
                <strong>Commands</strong>
            </Alert>
        );
    }
}

CommandsList.propTypes = {
    user: PropTypes.object
}