mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { useApi } from "bknd/client";
|
|
|
|
export default function Test() {
|
|
const api = useApi(undefined);
|
|
return <div>{api.baseUrl}</div>;
|
|
}
|