import React from 'react'; import {BsChevronDown, BsChevronUp} from 'react-icons/bs' export default function Section({ title, section, handleSection }) { return ( <>
handleSection()} className="cursor-pointer grid grid-cols-12 gap-16 pt-6 borders text-gray-600">
{title}
{section ? : }
); }