You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
190 B

  1. import { useRouter } from "next/navigation";
  2. type Props = {
  3. }
  4. const TeamCard: React.FC<Props> = ({
  5. }) => {
  6. const router = useRouter();
  7. return <div></div>
  8. }
  9. export default TeamCard