7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
|
import Planner from "../islands/Planner.tsx";
|
||
|
import { define } from "../utils.ts";
|
||
|
|
||
|
export default define.page(function Home() {
|
||
|
return <Planner />;
|
||
|
});
|