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.
19 lines (17 loc) • 379 B
JavaScript
import * as React from "react";
import CircularProgress from "@mui/material/CircularProgress";
import Box from "@mui/material/Box";
export default function Loading() {
return (
<Box
sx={{
display: "flex",
direction: "column",
alignItems: "center",
justifyContent: "center",
}}
>
<CircularProgress />
</Box>
);
}