datalogger/frontend/src/routes/home/index.tsx

14 lines
296 B
TypeScript

import { FunctionalComponent, h } from "preact";
import * as style from "./style.css";
const Home: FunctionalComponent = () => {
return (
<div class={style.home}>
<h1>Home</h1>
<p>This is the Home component.</p>
</div>
);
};
export default Home;