mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
15 lines
230 B
TypeScript
15 lines
230 B
TypeScript
|
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>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
}
|