Examples: Add multimodal app (#2328)

This commit is contained in:
Dev Khant
2025-03-07 23:36:32 +05:30
committed by GitHub
parent 1aef468ebe
commit 655ae794b6
46 changed files with 2268 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
"use client";
import { GlobalState } from "./contexts/GlobalContext";
import Component from "./pages/home";
export default function Home() {
return (
<div>
<GlobalState>
<Component />
</GlobalState>
</div>
);
}