"use client"; import { ThemeColor } from "./types"; function MobileFrame({ children }: { children: React.ReactNode }) { return (
{children}
); } export function MobileNativewind({ themeColor }: { themeColor?: ThemeColor }) { return (

Good morning

Dashboard

{[["Revenue", "$4.2k"], ["Users", "184"]].map(([l, v]) => (

{l}

{v}

))}
{["Fix login bug", "Update pricing", "Review PR #42"].map((t, i) => (
{i === 0 && }

{t}

))}
{["Home", "Projects", "Chat", "Profile"].map((l, i) => (
{l}
))}
); } export function MobileGluestack({ themeColor }: { themeColor?: ThemeColor }) { return (

Dashboard

{[["Revenue", "$4.2k", "#1976d2"], ["Users", "184", "#7b1fa2"]].map(([l, v, c]) => (

{l}

{v}

))}
{["Fix login bug", "Update pricing", "Review PR #42"].map((t, i) => (

{t}

))}
{["Home", "Tasks", "Chat", "Profile"].map((l, i) => (
{l}
))}
); }