Skip to content

Commit

Permalink
Added icon header and mocklogs
Browse files Browse the repository at this point in the history
Trying to add the table component....
  • Loading branch information
pearchery committed Jun 27, 2018
1 parent 0079e22 commit 4eb3fe8
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion daemon/web/pages/containers/Containers.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import React from 'react';
import { connect } from 'react-redux';
import TerminalView from '../../components/TerminalView/TerminalView';
import IconHeader from '../../components/IconHeader/IconHeader';
import {
Table,
TableCell,
TableRow,
TableHeader,
TableBody,
TableRowExpandable,
} from '../../components/Table/Table';

const mocklogs = [
'log1asdasdasdasdasdasdasdssdasdasdssdasdasdssdasdasdssdasdasdsa',
Expand All @@ -22,9 +30,14 @@ class ContainersWrapper extends React.Component {
render() {
return (
<div>
<IconHeader type='containers' title='CONTAINER'/>
<IconHeader type='containers' title='/inertia-deploy-test_dev_1'/>
<div className='containerInfo'>

</div>
<TerminalView logs={mocklogs} />
</div>


);
}
}
Expand Down

0 comments on commit 4eb3fe8

Please sign in to comment.