webapp/src/components/Nav/Modal/Opener.tsx

13 lines
325 B
TypeScript
Raw Normal View History

import type { ModalType } from '../../../stores/ui'
import type { JSX } from 'solid-js/jsx-runtime'
import { showModal } from '../../../stores/ui'
2022-09-09 11:53:35 +00:00
2022-10-07 19:35:53 +00:00
export default (props: { name: ModalType; children: JSX.Element }) => {
2022-09-09 11:53:35 +00:00
return (
<a href="#" onClick={() => showModal(props.name)}>
{props.children}
</a>
)
}