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.
18 lines (16 loc) • 365 B
JavaScript
import { Container, Typography } from "@mui/material";
import * as React from "react";
export default function CenteredContainer({ maxWidth, children }) {
return (
<Container
maxWidth={maxWidth}
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
{children}
</Container>
);
}