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

Loading

); } return (

About

) } }