import React, {Component} from 'react'; import {Spinner} from '.'; import '../static/stylesheets/globals.scss'; import styles from './About.scss'; import contentStyle from '../static/stylesheets/content.scss'; export default class About extends Component { render () { if (this.props.isLoading) { return (
); } return (

About

) } }