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.

16 lines (14 loc) 314 B
import { Paper, Typography } from "@mui/material"; import React from "react"; export default function CommandPreview({ cmdPreview }) { return ( <> <Typography> <b>Command preview</b> </Typography> <Paper sx={{ p: 2 }}> <pre>{cmdPreview}</pre> </Paper> </> ); }