added in initial user flow screens

This commit is contained in:
2021-07-26 16:57:28 +01:00
parent 8bc839c63e
commit ead2987c65
23 changed files with 2279 additions and 110 deletions
+17
View File
@@ -0,0 +1,17 @@
const ApiResponse = (req, res) => {
res.statusCode = 200;
res.json({
data: {
firstname: "Steve",
lastname: "Johnson",
email: "steve@test.co.uk",
telephone: "0000000000",
companygroup: "Test Company",
addressline1: "1 Test Street",
towncity: "TestTown",
county: "Test County",
postcode: "TN12 12N",
},
});
};
export default ApiResponse;