import { useStore } from '../store' import type { HelpLinePosition } from './types' const HelpLineBase = ({ top, right, bottom, left, }: HelpLinePosition) => { return (
) } const HelpLine = () => { const helpLine = useStore(state => state.helpLine) return ( <> { helpLine?.bottom && (