// Sample TSX file for testing
import React, { useState } from "react";

interface User {
  id: number;
  name: string;
  email: string;
}

function App(): JSX.Element {
  const [count, setCount] = useState<number>(0);
  const users: User[] = [
    { id: 1, name: "Alice", email: "alice@example.com" },
    { id: 2, name: "Bob", email: "bob@example.com" },
  ];

  return (
    <div className="app">
      <h1>Hello from FileDummy!</h1>
      <button onClick={() => setCount(count + 1)}>
        Clicked {count} times
      </button>
    </div>
  );
}

export default App;

