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.

14 lines (12 loc) 310 B
import React from "react"; import { Box, Divider, Typography } from "@mui/material"; export default function PageTitle({ variant = "h2", sx = {}, children }) { return ( <Box sx={sx}> <Typography variant={variant} sx={sx}> {children} </Typography> <Divider /> </Box> ); }