import {Col, Container, Row} from 'reactstrap'; import {Match} from './Match'; import React from 'react'; export function Stage(props) { const {isSignedIn, isOwner, updateNextStage} = props; return (

{props.level}

{props.matches.map((match => ( )))}
); }