1234567891011121314151617181920 |
- /**
- * React Static Boilerplate
- * https://github.com/koistya/react-static-boilerplate
- * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
- */
- import React, { Component } from 'react';
- export default class extends Component {
- render() {
- return (
- <div>
- <h1>Home Page</h1>
- <p>Coming soon.</p>
- </div>
- );
- }
- }
|