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 />
|
|
)
|
|
}
|
|
|
|
}
|