import { useState } from 'react'; export default function SimpleTest() { const [count, setCount] = useState(0); return (

Simple Test Component

This is a simple React component to test if the infinite refresh is caused by the API calls.

{count}

If this component works without refreshing, the issue is in the TaskManager API calls.

); }