summary refs log tree commit diff
path: root/client/src/Components/ResponseContainer.js
blob: 8fad4bda4fe2279c2fbf6f06b12d8d4c99d279c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
import Response from "./Response";

function ResponseContainer(props){
    const responseContent = props.requests.map((r) => <Response key={r.key} url={r.url}/>);

    return (
        responseContent
    )
}

export default ResponseContainer;