From c1b24a1d5f4a7b930c9fb6a4e07c0639bbfd2cf8 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Wed, 5 Mar 2025 22:40:18 +0100 Subject: [PATCH] feat: descriptive props on the test page --- src/pages/index.astro | 60 +++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 979437b..24340bc 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,43 +2,43 @@ import Serialize from "../Serialize.astro"; import { stringify } from "devalue"; const data = { - name: 'John Doe', - isOkay: true, - mood: null, - now: new Date(), - age: BigInt('3218378192378') -} + nameStr: "John Doe", + isOkayBool: true, + moodNull: null, + nowDate: new Date(), + ageBigInt: BigInt("3218378192378"), +}; export type Data = typeof data; ---
- +