efcsydney/efcsydney-roster

View on GitHub
client/src/modules/admin/UnderConstruction.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import styled from 'styled-components';

export default ({ title }) => (
  <Wrapper>
    {title && <h1>{title}</h1>}
    <p>Under Construction</p>
  </Wrapper>
);

const Wrapper = styled.div`
  padding: 10px;
  text-align: center;
`;