source: pages/index/+Page.tsx@ 66bf4fd

main
Last change on this file since 66bf4fd was 8ee4553, checked in by Bati <no-reply@…>, 7 months ago

scaffold Vike app with Bati

  • Property mode set to 100644
File size: 281 bytes
Line 
1import { Counter } from "./Counter.js";
2
3export default function Page() {
4 return (
5 <>
6 <h1>My Vike app</h1>
7 <p>This page is:</p>
8 <ul>
9 <li>Rendered to HTML.</li>
10 <li>
11 Interactive. <Counter />
12 </li>
13 </ul>
14 </>
15 );
16}
Note: See TracBrowser for help on using the repository browser.