model-navigator-standalone
Version:
Standalone MDF graph model visualizer
22 lines • 471 B
JavaScript
import React from 'react';
import { Button } from '@mui/material';
import withStyles from '@mui/styles/withStyles';
const TabPanel = _ref => {
let {
children,
value,
index,
classes
} = _ref;
return /*#__PURE__*/React.createElement("div", {
className: classes.content,
role: "tabpanel",
hidden: value !== index
}, children);
};
const styles = () => ({
content: {
height: '100%'
}
});
export default withStyles(styles)(TabPanel);