UNPKG

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.

13 lines (11 loc) 264 B
import { Divider, Typography } from "@mui/material"; import * as React from "react"; export default function ToolSetupRow({title, children}) { return ( <> <Typography variant="h6">{title}</Typography> <Divider /> {children} </> ); }