import React from 'react' import { Slider, Typography } from '@mui/material' import { observer } from 'mobx-react' import type { MsaViewModel } from '../../model.ts' const GappynessSlider = observer(function GappynessSlider({ model, }: { model: MsaViewModel }) { const { hideGaps, allowedGappyness } = model if (!hideGaps) { return null } return (