16 lines
330 B
JavaScript
Executable File
16 lines
330 B
JavaScript
Executable File
import * as React from "react";
|
|
|
|
export default class ApplicationContainer extends React.Component {
|
|
|
|
render() {
|
|
return (
|
|
<div className="main-container">
|
|
<div className="main-content">
|
|
{this.props.children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|