import CancelIcon from '@lume/shared/icons/cancel'; import PlusIcon from '@lume/shared/icons/plus'; import { Dialog, Transition } from '@headlessui/react'; import { Fragment, useState } from 'react'; export function CreateViewModal() { const [isOpen, setIsOpen] = useState(false); const closeModal = () => { setIsOpen(false); }; const openModal = () => { setIsOpen(true); }; return ( <>
Create a view
View is specific feature help you pin who you want to see in your feed. You can add maximum 5 people in a view.
); }