added home blog section

This commit was merged in pull request #4.
This commit is contained in:
victorAnumudu
2024-07-30 15:32:47 +01:00
parent 045fe85938
commit f0ccf28fdd
14 changed files with 855 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
import Axios from 'axios';
async function BlogData() {
// let response = await Axios.post(`${process.env.REACT_APP_AUX_ENDPOINT}/blogdata`);
let response = await Axios.post(`${'https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1'}/blogdata`);
return await response;
}
export default BlogData;