mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
18fed27fa3
- Fixes #19
12 lines
172 B
TypeScript
12 lines
172 B
TypeScript
import { Component } from 'inferno';
|
|
import { Main } from './main';
|
|
|
|
export class Home extends Component<any, any> {
|
|
|
|
render() {
|
|
return (
|
|
<Main />
|
|
)
|
|
}
|
|
|
|
}
|