import React, {Component} from 'react'; 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 (

Loading

); } return (

About

) } }