import {motion} from "framer-motion" import Backdrop from "./Backdrop.tsx" import { SidebarData } from "./SidebarData.tsx" import {Link} from 'react-router-dom'; import * as AiIcons from 'react-icons/ai'; import "../../styles/Header.css" import React from "react"; const dropIn = { hidden: { x: "-100vh", }, visible: { x: "0", }, exit: { x: "-100vh", }, } interface CloseProps { handleclose: Function; } const Modal = ({ handleclose }: CloseProps) => { return (
    • {SidebarData.map((item, index) => { return (
    • {item.icon} {item.title}
    • ) })}
    ) } export default Modal