import React from 'react'; import {BsChevronDown, BsChevronUp} from 'react-icons/bs' export default function Section({ title, section, handleSection }) { return ( <>
handleSection()} className="cursor-pointer flex justify-between inline-block pt-6 borders font-medium text-gray-700">
{title}
{section ? : }
); }