9 lines
137 B
Text
9 lines
137 B
Text
|
{navItems.map(item => (
|
||
|
<a
|
||
|
class="block py-3 px-4 text-sm text-gray-800"
|
||
|
href={item.url}
|
||
|
>
|
||
|
{item.title}
|
||
|
</a>
|
||
|
))}
|