import { INVESTORS } from "@/config/data";

import TeamList from "./team-list";

export default function TeamListInvestors() {
  return __FF_TEAM_INVESTORS__ ? (
    <TeamList title="Investors" teamMembers={INVESTORS} />
  ) : null;
}
