import { CheckIcon } from '../ReactIcons/CheckIcon'; import type { TeamDocument } from './CreateTeamForm'; type Step4Props = { team: TeamDocument; }; export function Step4({ team }: Step4Props) { return (

Team Created

Your team has been created. Happy learning!

View Team
); }