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.

15 lines (13 loc) 377 B
import { Container, Typography } from "@mui/material"; import React from "react"; import ChipContainer from "../../../common/chipContainer"; export default function RelayedData({ relayedOutputs }) { return relayedOutputs.map((item) => { return ( <> <Typography>{item.name}</Typography> <ChipContainer chips={[item.key]} /> </> ); }); }