presentations/taking-flight-with-tailwind-css/slides/code/20-loops-2.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
137 B
Text
Raw Normal View History

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