Update Bridge file layout
This commit is contained in:
parent
2c43e81436
commit
b0fb643b6a
47 changed files with 2488 additions and 2087 deletions
10
apps/bridge-frontend/app/(main)/signal/page.tsx
Normal file
10
apps/bridge-frontend/app/(main)/signal/page.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { SignalBotsList } from "./_components/SignalBotsList";
|
||||
import { db } from "@/app/_lib/database";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function Page() {
|
||||
const rows = await db.selectFrom("SignalBot").selectAll().execute();
|
||||
|
||||
return <SignalBotsList rows={rows} />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue