UNPKG

@bigfishtv/cockpit

Version:

16 lines (14 loc) 326 B
import React, { Component } from 'react' /** * Wraps children with a 'main' component, idea being can be extended in future if required */ export default class MainContent extends Component { render() { const { children } = this.props return ( <main className="main" role="main"> {children} </main> ) } }