demo: Restructure storytelling-chatbot directory, update README steps, link to vercel demo

This commit is contained in:
Mark Backman
2025-04-18 08:47:32 -04:00
parent e0cf5ec016
commit 814e7509e1
53 changed files with 69 additions and 41 deletions

View File

@@ -0,0 +1,16 @@
"use client";
import React from "react";
import { DailyProvider, useCallObject } from "@daily-co/daily-react";
import App from "../components/App";
export default function Home() {
const callObject = useCallObject({});
return (
<DailyProvider callObject={callObject}>
<App />
</DailyProvider>
);
}