import { Button, Input, Select, Typography } from 'antd'; import { ArrowLeft, ArrowRight } from 'lucide-react'; interface InviteTeamMembersProps { onNext: () => void; onBack: () => void; } const userRolesOptions = ( ); function InviteTeamMembers({ onNext, onBack, }: InviteTeamMembersProps): JSX.Element { return (
Observability made collaborative The more your team uses SigNoz, the stronger your observability. Share dashboards, collaborate on alerts, and troubleshoot faster together.
Collaborate with your team
Invite your team to the SigNoz workspace
); } export default InviteTeamMembers;