Matthew Phillips @matthewcp
1
Cached | Uncached | |
---|---|---|
Astro 0.21 | 215ms | 307ms |
Astro 0.20 | 703ms | 5990ms |
> 3x Faster Cached
Almost 20x Faster Uncached
2
---
const { name } = Astro.props;
---
<article class="user">
<h1>{ name }</h1>
<p>Stuff about the user here...</p>
</article>
User.astro
Component script section
Template section
---
import User from '../components/User.jsx';
---
<html lang="en">
<head>
<title>User page</title>
</head>
<body>
<h1>Users</h1>
<User name="Matthew" />
</body>
</html>
index.astro
3
4
From Jason Miller https://jasonformat.com/islands-architecture/
5
The Web
?
We are really close! But a few more things...