You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
425 B
JavaScript
12 lines
425 B
JavaScript
import React from 'react'
|
|
import { Link } from '@inertiajs/react'
|
|
|
|
export default function MenuItem({ routeName, name, active }) {
|
|
return (
|
|
<li>
|
|
<Link href={route(routeName)} className={`flex items-center p-2 text-base font-normal rounded-lg ${route().current(active) ? 'bg-base-200' : 'hover:bg-base-200'} `}>
|
|
<span className="ml-3">{name}</span>
|
|
</Link>
|
|
</li>
|
|
)
|
|
} |