From 9ad43ed4d41906af8ae33160b30d6cd6a6ae9bc0 Mon Sep 17 00:00:00 2001 From: kartofen Date: Wed, 26 Oct 2022 18:03:58 +0300 Subject: prod version --- src/pages/boards.astro | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/pages/boards.astro (limited to 'src/pages/boards.astro') diff --git a/src/pages/boards.astro b/src/pages/boards.astro deleted file mode 100644 index 8120bd2..0000000 --- a/src/pages/boards.astro +++ /dev/null @@ -1,27 +0,0 @@ ---- -import '../styles/blackbox.css' -import Default from '../layouts/Default.astro'; -import { api } from '../lib/api.ts'; - -const data = await api('get', 'boards'); -const boards: string[] = await data.json(); ---- - - -

Boards

- -
-
    - {boards.map((board) => ( -
  • {board}
  • - ))} -
-
-
- - -- cgit v1.2.3