13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
|
// Third-party imports.
|
||
|
import {Component} from "preact";
|
||
|
|
||
|
export class App extends Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<>
|
||
|
<p class="subtitle">Today is:</p>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
}
|