import { Fragment, useState } from 'react' import { Dialog, Transition } from '@headlessui/react' import { XIcon } from '@heroicons/react/outline' export default function SlideOver() { const [open, setOpen] = useState(true) return (
Panel title
{/* Replace with your content */}
{/* /End replace */}
) }