StephenChou1017 / react-big-scheduler

A scheduler and resource planning component built for React and made for modern browsers (IE10+)
https://stephenchou1017.github.io/scheduler/#/
MIT License
746 stars 415 forks source link

Show data from api data #188

Open sintyawates opened 4 years ago

sintyawates commented 4 years ago

How to show data event from axios api, async componentDidMount(){ try { const [resourceRequest, eventsRequest] = await axios.all([ axios.get(${config.apiDomain}/activity/resource_activity, { headers: { "X-API-KEY": token }, withCredentials: false }), axios.get(${config.apiDomain}/activity/event_activity, { headers: { "X-API-KEY": token }, withCredentials: false }) ]); }

thanks..