dashboard_chart.js 207 B

12345678910111213
  1. function chart(method) {
  2. let res = null;
  3. switch (method) {
  4. case "GET":
  5. res = [100, 40, 78, 10, 30, 48];
  6. break;
  7. default:
  8. res = null;
  9. }
  10. return res;
  11. }
  12. module.exports = chart;