diff --git a/packages/console-app/src/containers/panels/bots/Bots.js b/packages/console-app/src/containers/panels/bots/Bots.js index 5e903c0..e79344c 100644 --- a/packages/console-app/src/containers/panels/bots/Bots.js +++ b/packages/console-app/src/containers/panels/bots/Bots.js @@ -11,8 +11,10 @@ import Panel from '../../../components/Panel'; import Toolbar from '../../../components/Toolbar'; import BotRecords from './BotRecords'; +import LogPoller from '../../../components/LogPoller'; const TAB_RECORDS = 'records'; +const TAB_LOG = 'log'; const useStyles = makeStyles(theme => ({ root: {} @@ -29,6 +31,7 @@ const Bots = () => { setTab(value)}> + } @@ -36,6 +39,10 @@ const Bots = () => { {tab === TAB_RECORDS && ( )} + + {tab === TAB_LOG && ( + + )} ); };