WIP: Architecture Refactor, add stub files and working blog post wrapped by AppShell

This commit is contained in:
2025-12-28 00:21:13 -08:00
parent c34f11de00
commit 3abd97702d
15 changed files with 96 additions and 134 deletions

View File

View File

View File

@@ -0,0 +1,13 @@
import React from 'react';
export function ThemePicker() {
const randomNumber = Math.random();
return (
<div>
<h1>Sub Component!</h1>
<p>Some text here... maybe? with hot reloading! {randomNumber}</p>
</div>
)
}