NextJSNetflix/components/NavbarItem.tsx

14 lines
283 B
TypeScript
Raw Normal View History

2023-06-26 14:50:04 +00:00
import React from "react";
interface NavbarItemProps {
label: String;
}
const NavbarItem: React.FC<NavbarItemProps> = ({label}) => {
return (
<div className="text-white cursor-pointer hover:text-gray-300 transition">
{label}
</div>
)
}
export default NavbarItem