From e58b453f24c8b4081361112862d29c34eb22009d Mon Sep 17 00:00:00 2001 From: Melonai Date: Wed, 20 May 2020 19:52:18 +0200 Subject: port to react and better error handling in backend --- client/src/Components/ResponseContainer.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 client/src/Components/ResponseContainer.js (limited to 'client/src/Components/ResponseContainer.js') diff --git a/client/src/Components/ResponseContainer.js b/client/src/Components/ResponseContainer.js new file mode 100644 index 0000000..8fad4bd --- /dev/null +++ b/client/src/Components/ResponseContainer.js @@ -0,0 +1,12 @@ +import React from 'react'; +import Response from "./Response"; + +function ResponseContainer(props){ + const responseContent = props.requests.map((r) => ); + + return ( + responseContent + ) +} + +export default ResponseContainer; \ No newline at end of file -- cgit 1.4.1