lemmy/ui/src/components/home.tsx
Dessalines 38fa7969f9 Adding a front page / fetching subscribed forums.
- Adding subscribed to post view. Fixes #25
2019-04-05 12:14:54 -07:00

14 lines
208 B
TypeScript

import { Component } from 'inferno';
import { repoUrl } from '../utils';
import { Main } from './main';
export class Home extends Component<any, any> {
render() {
return (
<Main />
)
}
}