Init(Core): add to repo and add seeders
This commit is contained in:
8
resources/js/Components/SidebarItem.jsx
Normal file
8
resources/js/Components/SidebarItem.jsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Link } from '@inertiajs/react'
|
||||
export default function SidebarItem({ title, href }) {
|
||||
return (
|
||||
<div className="flex border-b hover:border-l hover:border-l-black transition duration-600 hover:bg-gradient-to-r from-gray-200 to-gray-50">
|
||||
<Link className="w-full h-full p-4" href={href}>{title}</Link>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user