Add conditional desktop/mobile rendering

This commit is contained in:
LukeGus
2025-09-03 21:11:27 -05:00
parent 4852b0f884
commit c4e888dfce
4 changed files with 106 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
export function MobileApp() {
return (
<div>
<h1>Mobile</h1>
</div>
)
}