oh-my-c0de/oh-my-fullstack

View on GitHub
pages/about.js

Summary

Maintainability
A
0 mins
Test Coverage
import React, { PureComponent } from 'react';
import { DefaultLayout } from '../components/layout';

const styles = {
  wrapper: {
    backgroundColor: '#fff',
    margin: '40px 20%',
    padding: 40,
  },
};

// eslint-disable-next-line react/prefer-stateless-function
class About extends PureComponent {
  render() {
    return (
      <DefaultLayout>
        <div style={styles.wrapper}>
          <h1>About</h1>
        </div>
      </DefaultLayout>
    );
  }
}

export default About;