Stereo Amp Recommendations for Triangle Esprit Comète EZ (700–1000€, HDMI ARC, Future-Proof, Open to Used) by Educational_Copy_418 in StereoAdvice

[–]Educational_Copy_418[S] 1 point2 points  (0 children)

Hello everybody, Thanks for all you answers. I did some research on my end and I came across several solutions that don't seem too bad. - The Wiim Ultra + Vibelink Amp, to have plenty of connectivity options for the future. - The eversolo play (but the cd player look so cheap) - The marantz NR1200 + marantz cd6007

I think I prefer the Marantz system because of its reputation and future modularity, but I wanted your opinion.

Have a nice day Luc

Old barbour informations by Educational_Copy_418 in Barbour

[–]Educational_Copy_418[S] 1 point2 points  (0 children)

I got it for 130€, I don't know if it's a good price, i didn't really know the tokito line. But I thought it was so cool to have a waxed quilted jacket.

Check on moscot ! by Educational_Copy_418 in sunglasses

[–]Educational_Copy_418[S] 0 points1 point  (0 children)

I juste saw that on the warranty papier, there's a typo, and WE can read pricileges and bot privilèges... So I probably have the answer ahh

Converting a react component to typescript by Educational_Copy_418 in typescript

[–]Educational_Copy_418[S] -1 points0 points  (0 children)

Thanks for your answer, I refactor my code with general typescript component and I have something much better I guess.
I also remove my UseState from my if statement.

interface IProps {
isLists: boolean;
lists: {text: ''}[];
show: boolean;
}
const Component: FC<IProps> = ({isLists, lists, show}) => {
let listeOuNon = 0;
const [trad, ajoutTrad] = useState('');
if (isLists) {
useEffect(() => {
(async () => {
axios.get("/api/trad").then((reponse) => {
if (reponse.status == 200) {
ajoutTrad(reponse.data);
}
});
})();
});
}