Build a data table in React that displays a list of users and allows sorting by columns.
Requirements:
- Display user data in a table with columns: Name, Age, and Email.
- Add sorting functionality:
- Clicking on a column header sorts the table by that column.
- Clicking again toggles ascending/descending order.
- Indicate which column is currently sorted.
- Sorting should work for both text and numbers.
- Focus on functionality over styling.