import * as React from "react"; import Typography from "@material-ui/core/Typography"; import Paper from "@material-ui/core/Paper"; import Grid from "@material-ui/core/Grid"; import Button from "@material-ui/core/Button"; import SummaryTable from "../components/SummaryTable"; import { Redirect } from "react-router-dom"; import { IReviewMetadata } from "../models/review"; interface IProps { reviewMeta: () => IReviewMetadata; } interface IState { toDashboard: boolean; } export default class SummaryPage extends React.Component { constructor(props: any) { super(props); this.state = { toDashboard: false, }; } render() { return
{ this.state.toDashboard ? ( ) : undefined } Zusammenfassung
; } }