CoolFace
Apppublic

DataScope26/WEB

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
CompanySetup.jsx20 linesDownload Raw Back to pages
1import { useParams, useNavigate } from "react-router-dom";2import CreateAreaStep from "../components/CreateAreaStep.jsx";3import "./CompanySetup.css";4 5export default function CompanySetup() {6  const { companyId } = useParams();7  const navigate = useNavigate();8 9  const goToInvitations = () => navigate("/overview/invitaciones");10 11  return (12    <div className="company-setup">13      <CreateAreaStep14        companyId={companyId}15        onNext={goToInvitations}16        onSkip={goToInvitations}17      />18    </div>19  );20}