Skip to content

pedr0ferrari/weatherapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

type Entrada1 = {
  props1: string;
  props2: boolean;
};

interface Entrada2 {
  props3: number;
  props4: (nome: string) => null;
}

const component = (
  { props1, props2 }: Entrada1,
  { props3, props4 }: Entrada2
) => {
  return props2;
};