// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { Theme } from "@material-ui/core"; import { StyleRulesCallback, WithStyles } from "@material-ui/core/styles"; import Paper from "@material-ui/core/Paper/Paper"; import withStyles from "@material-ui/core/es/styles/withStyles"; import Table from "@material-ui/core/Table/Table"; import TableHead from "@material-ui/core/TableHead/TableHead"; import TableRow from "@material-ui/core/TableRow/TableRow"; import TableCell from "@material-ui/core/TableCell/TableCell"; import TableBody from "@material-ui/core/TableBody/TableBody"; type CssRules = 'root' | 'table'; const styles: StyleRulesCallback = (theme: Theme) => ({ root: { width: '100%', marginTop: theme.spacing.unit * 3, overflowX: 'auto', }, table: { minWidth: 700, }, }); interface ProjectListProps { } class ProjectList extends React.Component, {}> { render() { const {classes} = this.props; return Name Status Type Shared by File size Last modified Project 1 Complete Project John Doe 1.5 GB 9:22 PM
} } export default withStyles(styles)(ProjectList);