Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 5, 2024 19:41
Show Gist options
  • Save PaulieScanlon/8a8c17d814d13235f66a300374a5ee12 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/8a8c17d814d13235f66a300374a5ee12 to your computer and use it in GitHub Desktop.
Example Astro Route
// src/pages/index.astro
---
const response = await fetch('https://api.github.com/repos/withastro/astro');
const data = await response.json();
import ParentComponent from '../components/parent-component';
---
<ParentComponent data={data} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment