I'm an MBA student in Data Science, with MBA in Front-End, Full Stack Node, Responsive Design, Javascript ES6 and Advanced HTML5 certifications:
- 🛸 You can reach me and keep in touch about technology news on my Medium profile at: https://zefino.medium.com/
- 👨🏻⚖️.Also, with you want to understand about brazilian law you can reach me on my Jusbrasil profile at: https://leandrocalado.jusbrasil.com.br/
- 📫 get my e-mail: lcaladoferreira@gmail.com
- Click on my name and find me on LinkedIn
export interface Iprofile {
frontEnd: string;
backEnd: string;
experience: number;
desc?: string;
}
export function getProfileEndpoint(): Promise<Iprofile[]> {
return fetch("http://localhost:8080/profile").then((resp) => {
return resp.json();
});
}