"use client" import * as React from "react" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Button } from "@/components/ui/button" interface TestComponentProps { teamId: string teamName: string } export function TestComponent({ teamId, teamName }: TestComponentProps) { return (
{teamName} - Test Component Testing if React components load properly (Team ID: {teamId})

This is a test component to verify React is working.

If you can see this, the basic React setup is functional.

Auto-commit test: {new Date().toISOString()}

) }