PocSplitUpload/ClientApp/src/components/Layout.js
import React, { Component } from 'react';
import { Container } from 'reactstrap';
export class Layout extends Component {
static displayName = Layout.name;
render () {
return (
<div>
<Container>
{this.props.children}
</Container>
</div>
);
}
}