webapp/src/components/Nav/Opener.tsx

11 lines
262 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import type { ModalType } from '../../stores/ui'
import { showModal } from '../../stores/ui'
export default (props: { name: ModalType; children: any }) => {
return (
<a href="#" onClick={() => showModal(props.name)}>
{props.children}
</a>
)
}