import { useState } from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { toast } from 'sonner' function AppMinimal() { const [count, setCount] = useState(0) return (
CodeForge - Minimal Test Testing if the basic app loads

Count: {count}

If you can see this, the basic React app is loading correctly.

) } export default AppMinimal