Integrate the new UI pages with the working backend for the rate_summary task. This also migrates some pages to properly link up authorization flows. Some cruft is still in

This commit is contained in:
Keith Stevens
2022-12-19 15:12:45 +09:00
parent 00ad927a2e
commit 2aacc542d3
13 changed files with 412 additions and 103 deletions
+8
View File
@@ -0,0 +1,8 @@
import axios from "axios";
/**
* A minimal Axios based fetcher.
*/
const fetcher = (url) => axios.get(url).then((res) => res.data);
export default fetcher;