Files
bestpc/src/pages/Home/index.tsx

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-05-05 17:28:22 +07:00
import "./style.css";
2025-04-29 11:36:07 +07:00
export function Home() {
2025-05-05 17:28:22 +07:00
return (
<div class="home">
<a href="https://preactjs.com" target="_blank"></a>
<h1>Get Started building Vite-powered Preact Apps </h1>
<section>
<Resource
title="Learn Preact"
description="If you're new to Preact, try the interactive tutorial to learn important concepts"
href="https://preactjs.com/tutorial"
/>
<Resource
title="Differences to React"
description="If you're coming from React, you may want to check out our docs to see where Preact differs"
href="https://preactjs.com/guide/v10/differences-to-react"
/>
<Resource
title="Learn Vite"
description="To learn more about Vite and how you can customize it to fit your needs, take a look at their excellent documentation"
href="https://vitejs.dev"
/>
</section>
</div>
);
2025-04-29 11:36:07 +07:00
}
function Resource(props) {
2025-05-05 17:28:22 +07:00
return (
<a href={props.href} target="_blank" class="resource">
<h2>{props.title}</h2>
<p>{props.description}</p>
</a>
);
2025-04-29 11:36:07 +07:00
}