UNPKG

@bigfishtv/cockpit

Version:

21 lines (17 loc) 564 B
import React from 'react' import Bulkhead from '../page/Bulkhead' import MainContent from '../container/MainContent' import Panel from '../container/panel/Panel' const Forbidden = props => ( <MainContent> <Bulkhead title="Forbidden" Toolbar={null} /> <div style={{ padding: '1rem 1.5rem' }}> <Panel> <div style={{ minHeight: 300, display: 'flex', alignItems: 'center' }}> <h3 style={{ flexGrow: 1, textAlign: 'center' }}>You are not authorized to access this page</h3> </div> </Panel> </div> </MainContent> ) export default Forbidden