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.
21 lines (19 loc) • 538 B
JavaScript
import * as React from "react";
import Typography from "@mui/material/Typography";
import { Divider } from "@mui/material";
export default function ToolTitle({ name, type, description }) {
return (
<>
<Typography variant="h3" align="left">
{name}
</Typography>
<Divider />
<Typography variant="h5" marginTop={5} align="left">
Type: {type}
</Typography>
<Typography variant="body1" marginTop={5} align="left">
Description: {description}
</Typography>
</>
);
}