flowviz
Version:
A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.
14 lines (12 loc) • 344 B
JavaScript
import { Typography } from "@mui/material";
import * as React from "react";
import CenteredContainer from "./centeredContainer";
export default function GenericError({ error }) {
return (
<CenteredContainer maxWidth="lg">
<Typography variant="h6" align="center">
{error}
</Typography>
</CenteredContainer>
);
}