import { ChevronDownIcon, XMarkIcon, MagnifyingGlassIcon, } from '@heroicons/react/24/solid' import { Popover, PopoverButton, PopoverPanel, PopoverBackdrop, Field, Select, Label, CloseButton, } from '@headlessui/react' import { Container } from './Container' export function Menu({ recentCourses }) { return (
NR-18 PEMT Plataforma Móvel de Trabalho
Curso de formação

NR-18 PEMT Plataforma Elevatória Móvel de Trabalho

Conheça outros cursos da EDUSEG®
{/* Search */} {/* Filter */}
    {recentCourses.map(({ data: { title, slug } }, idx) => { return (
  • {title}
  • ) })}
) }