Esse foi como foi feito na aula
import style from "../Lista.module.scss";
export default function Item({
tarefa,
tempo,
}: {
tarefa: string;
tempo: string;
}): JSX.Element {
return (
<li className={style.item}>
<h3>{tarefa}</h3>
<span>{tempo}</span>
</li>
);
}
Esse eu ja vi em outra aula
import style from "../Lista.module.scss";
interface ItemProps {
tarefa: string;
tempo: string;
}
export default function Item({ tarefa, tempo }: ItemProps): JSX.Element {
return (
<li className={style.item}>
<h3>{tarefa}</h3>
<span>{tempo}</span>
</li>
);
}
Gostaria de saber se existe alguma preferencia entre essas duas maneiras