import {Checkbox, Link, User, Chip, cn} from "@heroui/react"; export default function App() { const [isSelected, setIsSelected] = React.useState(false); const user = { name: "Junior Garcia", avatar: "https://avatars.githubusercontent.com/u/30373425?v=4", username: "jrgarciadev", url: "https://x.com/jrgarciadev", role: "Software Developer", status: "Active", }; return (
@{user.username} } name={user.name} />
{user.role} {user.status}
); }