import { Show } from 'solid-js' import { clsx } from 'clsx' import { Button } from '../../_shared/Button' import { Icon } from '../../_shared/Icon' import { useLocalize } from '../../../context/localize' import styles from './Panel.module.scss' import { useEditorContext } from '../../../context/editor' // type Props = { // // isVisible: boolean // } export const Panel = () => { const { t } = useLocalize() const { isEditorPanelVisible, wordCounter, actions: { toggleEditorPanel } } = useEditorContext() return ( ) }