mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
16 lines
266 B
TypeScript
16 lines
266 B
TypeScript
|
import { Component } from 'inferno';
|
||
|
|
||
|
export class NoMatch extends Component<any, any> {
|
||
|
constructor(props: any, context: any) {
|
||
|
super(props, context);
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<div class="container">
|
||
|
<h1>404</h1>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|