barbar/vortigern

View on GitHub
src/app/containers/Home/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react';
const style = require('./style.css');

class Home extends React.Component<any, any> {
  public render() {
    return (
      <div className={style.Home}>
        <img src={require('./barbar.png')} />
        <p>Hello!</p>
      </div>
    );
  }
}

export { Home }