Spaces:
Sleeping
Sleeping
Jon Taylor
commited on
Commit
·
289f294
1
Parent(s):
cad9679
test deps
Browse files
frontend/app/components/App.js
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
"use client";
|
2 |
-
|
3 |
import { useEffect, useState } from "react";
|
4 |
import { DailyProvider } from "@daily-co/daily-react";
|
5 |
import Daily from "@daily-co/daily-js";
|
|
|
|
|
|
|
1 |
import { useEffect, useState } from "react";
|
2 |
import { DailyProvider } from "@daily-co/daily-react";
|
3 |
import Daily from "@daily-co/daily-js";
|
frontend/app/components/CreateRoom.js
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
"use client";
|
2 |
-
|
3 |
import { ArrowRightIcon } from "@heroicons/react/20/solid";
|
4 |
import { useState } from "react";
|
5 |
import { apiUrl } from "../utils";
|
|
|
|
|
|
|
1 |
import { ArrowRightIcon } from "@heroicons/react/20/solid";
|
2 |
import { useState } from "react";
|
3 |
import { apiUrl } from "../utils";
|
frontend/app/components/Joining.js
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
"use client";
|
2 |
-
|
3 |
import { useDaily } from "@daily-co/daily-react";
|
4 |
import { useEffect } from "react";
|
5 |
|
|
|
|
|
|
|
1 |
import { useDaily } from "@daily-co/daily-react";
|
2 |
import { useEffect } from "react";
|
3 |
|
frontend/app/page.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
"use client";
|
2 |
|
3 |
import App from "./components/App";
|
|
|
4 |
export default function Home() {
|
5 |
return <App />;
|
6 |
}
|
|
|
1 |
"use client";
|
2 |
|
3 |
import App from "./components/App";
|
4 |
+
|
5 |
export default function Home() {
|
6 |
return <App />;
|
7 |
}
|