import React from 'react'; import Badges from './badges'; import { conf } from '../config/base-config'; import { Configuration } from '../config/configuration'; export default class Home extends React.Component { constructor(props: any) { super(props); this.state = conf; } public render() { return (
{this.state.title}

{this.state.tagLine}

); } }