mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
49bf16e7d4
- Fixes #19
13 lines
172 B
TypeScript
13 lines
172 B
TypeScript
import { Component } from 'inferno';
|
|
import { Main } from './main';
|
|
|
|
export class Home extends Component<any, any> {
|
|
|
|
render() {
|
|
return (
|
|
<Main />
|
|
)
|
|
}
|
|
|
|
}
|