import { showingBotListModalAtom } from '@helpers/atoms/Modal.atom' import { Dialog, Transition } from '@headlessui/react' import { useAtom } from 'jotai' import React, { Fragment } from 'react' import BotListContainer from '../BotListContainer' const BotListModal: React.FC = () => { const [open, setOpen] = useAtom(showingBotListModalAtom) return (

Your bots

) } export default BotListModal