Initial commit from agent-native create

This commit is contained in:
agent-native
2026-07-29 11:50:08 +00:00
commit 138d195e4c
122 changed files with 7355 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { ToolkitProvider, type ToolkitComponents } from "@agent-native/toolkit";
import type { ReactNode } from "react";
import { Button } from "@/components/ui/button";
import { designSystem } from "@/design-system";
const components: ToolkitComponents = {
Button: Button as ToolkitComponents["Button"],
};
export function AppToolkitProvider({ children }: { children: ReactNode }) {
return (
<ToolkitProvider components={components} designSystem={designSystem}>
{children}
</ToolkitProvider>
);
}