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

export class Home extends Component<any, any> {

  render() {
    return (
      <Main />
    )
  }

}