0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/db/test/fixtures/db-in-src/pages/index.astro

12 lines
234 B
Text
Raw Permalink Normal View History

---
/// <reference path="../.astro/db-types.d.ts" />
2024-04-17 03:38:53 -05:00
import { User, db } from 'astro:db';
const users = await db.select().from(User);
---
<h2>Users</h2>
<ul class="users-list">
{users.map((user) => <li>{user.username}</li>)}
</ul>