import * as React from 'react' import { User } from '../interfaces' type ListDetailProps = { item: User } const ListDetail = ({ item: user }: ListDetailProps) => (
ID: {user.id}