e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
22 lines
670 B
TypeScript
22 lines
670 B
TypeScript
import { ExampleApp } from "@/lib/example-app";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="min-h-screen bg-linear-to-br from-gray-50 to-gray-100 p-8 dark:from-gray-900 dark:to-gray-800">
|
|
<div className="mx-auto max-w-4xl">
|
|
<div className="mb-8">
|
|
<h1 className="mb-2 text-4xl font-bold text-gray-900 dark:text-white">
|
|
@assistant-ui/store Example
|
|
</h1>
|
|
<p className="text-lg text-gray-600 dark:text-gray-400">
|
|
Demonstrating tap-based state management with scopes, lists, and
|
|
providers
|
|
</p>
|
|
</div>
|
|
|
|
<ExampleApp />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|