Skip to content

Commit 2b0df22

Browse files
committed
next routing, feature flagged via sidebar
1 parent 7ed4715 commit 2b0df22

File tree

29 files changed

+1004
-391
lines changed

29 files changed

+1004
-391
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"use client";
2+
3+
import APIRef from "@/components/api_ref";
4+
import { useState } from "react";
5+
6+
interface ProxySettings {
7+
PROXY_BASE_URL: string;
8+
PROXY_LOGOUT_URL: string;
9+
}
10+
11+
const APIReferencePage = () => {
12+
const [proxySettings, setProxySettings] = useState<ProxySettings>({ PROXY_BASE_URL: "", PROXY_LOGOUT_URL: "" });
13+
14+
return <APIRef proxySettings={proxySettings} />;
15+
};
16+
17+
export default APIReferencePage;

0 commit comments

Comments
 (0)