import { Button } from '@renderer/components/ui/button'; interface TeamEmptyStateProps { canCreate: boolean; onCreateTeam: () => void; } export const TeamEmptyState = ({ canCreate, onCreateTeam, }: TeamEmptyStateProps): React.JSX.Element => { return (

No teams found

Create a team here to get started. It will show up in the list automatically.

{!canCreate ? (

Team creation is only available in local Electron mode.

) : null}
); };