diff options
| author | 8cy <[email protected]> | 2020-07-24 06:33:39 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-07-24 06:33:39 -0700 |
| commit | 35622cb6d6a7ab969d973aacf8c786707fb322be (patch) | |
| tree | 5b04d53aaf1798fdb70a48dd4e307a509f10e0c1 /client/src/pages/CommandsList.js | |
| parent | stage (diff) | |
| download | dep-core-35622cb6d6a7ab969d973aacf8c786707fb322be.tar.xz dep-core-35622cb6d6a7ab969d973aacf8c786707fb322be.zip | |
big stuffs here
Diffstat (limited to 'client/src/pages/CommandsList.js')
| -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 |