Skip to content

Instantly share code, notes, and snippets.

View arcifius's full-sized avatar
🏠
Working from home

Augusto Russo arcifius

🏠
Working from home
  • Brazil
View GitHub Profile
// Omitted export stuff, this is just to pass the ideia of what i'm trying to accomplish
class MyAction {
async updateParticipants() {
const response = await axios.get("some/url/participants");
return response.data;
}
}
class MyStore {