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.

21 lines (19 loc) 419 B
import React from "react"; import { useState, useEffect } from "react"; import { useLocation } from "react-router-dom"; import { Box, FormControl, MenuItem, Container, Select, InputLabel, Toolbar, Typography, Stack, Grid, } from "@mui/material"; import PageTitle from "../common/pageTitle"; export default function WorkflowView({ sectionTitle }) { return <PageTitle>{sectionTitle}</PageTitle>; }