diff options
Diffstat (limited to 'client/src/pages')
| -rw-r--r-- | client/src/pages/CommandsList.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/src/pages/CommandsList.js b/client/src/pages/CommandsList.js new file mode 100644 index 0000000..d74a210 --- /dev/null +++ b/client/src/pages/CommandsList.js @@ -0,0 +1,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 +}
\ No newline at end of file |