information card in separate file
[arvados-workbench2.git] / src / views / process-panel / process-panel.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import { InformationCard } from '~/views/process-panel/information-card';
7 import { Grid } from '@material-ui/core';
8
9 export class ProcessPanel extends React.Component {
10     render() {
11         return <div>
12             <Grid container>
13                 <Grid item xs={7}>
14                     <InformationCard />
15                 </Grid>
16             </Grid>
17         </div>;
18     }
19 }