Files
habitica/website/client/store/actions/world-state.js
T
2018-02-16 21:36:10 +00:00

8 lines
178 B
JavaScript

import axios from 'axios';
export async function getWorldState () {
const url = '/api/v3/world-state';
const response = await axios.get(url);
return response.data.data;
}