summaryrefslogtreecommitdiffstats
path: root/ui/src/components/home.tsx
blob: 07cb94f5a4b86b33b6eb5a8f20e212de57ae3b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component } from 'inferno';
import { repoUrl } from '../utils';

export class Home extends Component<any, any> {

  render() {
    return (
      <div class="container">
        hola this is me.
      </div>
    )
  }

}