export type User = {
    id: string;
    name: string;
    email: string;
    weight: number;
    height: number;
    age: number;
};
