summaryrefslogtreecommitdiff
path: root/examples/basics/src/pages/index.astro
blob: a2bf4ee37b63b68eeab7d132319078caa406296e (plain) (blame)
1
2
3
4
5
6
7
8
---
import { Welcome } from 'astro:components';
import Layout from '../layouts/Layout.astro';
---

<Layout>
	<Welcome title="Welcome to Astro" />
</Layout>