added examples back
This commit is contained in:
16
examples/storytelling-chatbot/frontend/app/page.tsx
Normal file
16
examples/storytelling-chatbot/frontend/app/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user