import { XMarkIcon } from '@heroicons/react/24/outline';
import { PencilIcon } from '@heroicons/react/24/solid';
import { AnimatePresence, motion } from 'framer-motion';
import { useId, useState } from 'react';
function IndexSharedLayout() {
const [active, setActive] = useState(null);
const id = useId();
return (
<>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod
{' '}
tempor incididunt ut labore et dolore magna
aliqua.
New Note
Click the icon to toggle the transition
> ); } export default IndexSharedLayout;