props.ts 116 B

12345678
  1. export interface UserProps {
  2. user: {
  3. id: string,
  4. name: string,
  5. email: string,
  6. _type: string
  7. }
  8. }