import { useSettingsStore } from '@/stores/settings' /** * Component that displays current values of important graph settings * Positioned to the right of the toolbar at the bottom-left corner */ const SettingsDisplay = () => { const graphQueryMaxDepth = useSettingsStore.use.graphQueryMaxDepth() const graphMinDegree = useSettingsStore.use.graphMinDegree() return (
Depth: {graphQueryMaxDepth}
Degree: {graphMinDegree}
) } export default SettingsDisplay