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.

12 lines (8 loc) 243 B
import { useState } from "react"; export default function useNavBar() { const [drawerList, setDrawerList] = useState([]); const onChangeDrawerList = (list) => { setDrawerList(list); }; return [drawerList, onChangeDrawerList]; }