15 |
{title}
16 |
17 | {JSON.stringify(state, null, 2)}
18 |
19 |
20 | );
21 | }
22 |
--------------------------------------------------------------------------------
/apps/dev/src/components/ConnectionTypeSelect.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { ConnectionTypes } from "@singlestore/elegance-sdk/types";
4 |
5 | export function ConnectionTypeSelect({
6 | value,
7 | onChange
8 | }: {
9 | value: ConnectionTypes;
10 | onChange: (value: ConnectionTypes) => void;
11 | }) {
12 | return (
13 |